From 86aaa9a37c5b1cd86e61ba916df628aa21cd7a98 Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Fri, 8 May 2020 13:23:47 +0200
Subject: [PATCH] Cleanup.

---
 modules/scheduling/scheduler.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/modules/scheduling/scheduler.py b/modules/scheduling/scheduler.py
index f8f422c3..6b09dcf7 100644
--- a/modules/scheduling/scheduler.py
+++ b/modules/scheduling/scheduler.py
@@ -175,7 +175,8 @@ class AuraScheduler(threading.Thread):
 
     def play_active_entry(self):
         """
-        Plays the entry scheduled for the current moment.
+        Plays the entry scheduled for the very current moment and forwards to the scheduled position in time. 
+        Usually called when the Engine boots.
         """
         sleep_offset = 10
 
@@ -201,9 +202,6 @@ class AuraScheduler(threading.Thread):
                 # Check if this is the last item of the schedule
                 if active_entry.end_unix > active_entry.playlist.schedule.end_unix:
                     self.queue_end_of_schedule(active_entry, True)
-                else: #Otherwise only queue the regular end of the entry
-                    #FIXME
-                    self.logger.error(SimpleUtil.red("--FIXME-- Implement queue EOE"))
 
                 # Fast-forward to the scheduled position
                 if seconds_to_seek > 0:
-- 
GitLab