diff --git a/modules/scheduling/scheduler.py b/modules/scheduling/scheduler.py
index f8f422c3fa8cfa184a7578634c8bc675b07777be..6b09dcf7cd1ff25870b134ffc53f54c2f62bebee 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: