Fixed getArgs() returning a non-null value for the playlist when no playlist was passed.

This commit is contained in:
Erik Thuning 2024-09-06 15:14:05 +02:00
parent f0b3b19598
commit 75a47261bb

@ -151,7 +151,7 @@ function getArgs() {
return '/presentation/' + this.presentation return '/presentation/' + this.presentation
} }
out.getList = function() { out.getList = function() {
if(this.debug) { if(!this.playlist || this.debug) {
return this.playlist return this.playlist
} }
return '/playlist/' + this.playlist return '/playlist/' + this.playlist