From 039bd7dfd10ee02ef3d7765f2be249ed7555c4a0 Mon Sep 17 00:00:00 2001 From: bkfox Date: Mon, 4 Jan 2016 21:23:06 +0100 Subject: [PATCH] fix minor issues --- liquidsoap/management/commands/liquidsoap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liquidsoap/management/commands/liquidsoap.py b/liquidsoap/management/commands/liquidsoap.py index 1f5a60e..812703d 100644 --- a/liquidsoap/management/commands/liquidsoap.py +++ b/liquidsoap/management/commands/liquidsoap.py @@ -140,7 +140,7 @@ class Monitor: dealer.playlist = diff.playlist # run the diff - if dealer.playlist == diff.playlist and diff.date <= now and not dealer.on: + if dealer.playlist == diff.playlist and diff.start <= now and not dealer.on: dealer.on = True for source in controller.streams.values(): source.skip()