Remove this 'channel time cannot be in the future' condition, which was supposed to be gone a long time ago, since the player will actually deal with this situation just fine and play Flex until the channel start time

This commit is contained in:
vexorian 2025-12-01 10:47:06 -04:00
parent c1374d6de7
commit 88982104aa

View File

@ -1029,9 +1029,6 @@ module.exports = function ($timeout, $location, dizquetv, resolutionOptions, get
} else if (channel.overlayIcon && !validURL(channel.icon)) {
scope.error.icon = "Please enter a valid image URL. Cant overlay an invalid image."
scope.error.tab = "basic";
} else if (now < channel.startTime) {
scope.error.startTime = "Start time must not be set in the future."
scope.error.tab = "programming";
} else if (channel.programs.length === 0) {
scope.error.programs = "No programs have been selected. Select at least one program."
scope.error.tab = "programming";