diff --git a/PseudoChannel.py b/PseudoChannel.py index a7665c2..67f951d 100644 --- a/PseudoChannel.py +++ b/PseudoChannel.py @@ -732,7 +732,7 @@ class PseudoChannel(): os.makedirs(writepath) if os.path.exists(writepath+fileName): os.remove(writepath+fileName) - mode = 'a' if os.path.exists(writepath) else 'w' + mode = 'w' with open(writepath+fileName, mode) as f: f.write(data) diff --git a/pseudo_config.py b/pseudo_config.py index 3ecc7a1..9f357d5 100644 --- a/pseudo_config.py +++ b/pseudo_config.py @@ -71,7 +71,7 @@ When the schedule updates every 24 hours, it's possible that it will interrupt a playing from the previous day. To fix this, the app saves a "cached" schedule from the previous day to override any media that is trying to play while the previous day is finishing. """ -useDailyOverlapCache = True +useDailyOverlapCache = False dailyUpdateTime = "12:01 AM"