You've already forked RadioPlayer
mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-02-27 06:03:52 +01:00
log
This commit is contained in:
@@ -58,10 +58,13 @@ class Module(ActiveModifier):
|
|||||||
timestamp = now.timestamp() + last_track_duration
|
timestamp = now.timestamp() + last_track_duration
|
||||||
future = datetime.datetime.fromtimestamp(timestamp)
|
future = datetime.datetime.fromtimestamp(timestamp)
|
||||||
if now.hour < MORNING_START and future.hour > MORNING_START:
|
if now.hour < MORNING_START and future.hour > MORNING_START:
|
||||||
|
logger.warning("Skipping track as it bleeds into the morning")
|
||||||
return None, None
|
return None, None
|
||||||
elif now.hour < DAY_END and future.hour > DAY_END:
|
elif now.hour < DAY_END and future.hour > DAY_END:
|
||||||
|
logger.warning("Skipping track as it bleeds into the night")
|
||||||
return None, None
|
return None, None
|
||||||
elif future.day > now.day: # late night goes mid day, as it starts at midnight
|
elif future.day > now.day: # late night goes mid day, as it starts at midnight
|
||||||
|
logger.warning("Skipping track as it the next day")
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
return self.last_track, False
|
return self.last_track, False
|
||||||
|
|||||||
Reference in New Issue
Block a user