You've already forked RadioPlayer
mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-02-26 13:52:00 +01:00
dirs?
This commit is contained in:
@@ -120,7 +120,6 @@ class Module(ActiveModifier):
|
||||
return {"status": "ok", "message": f"{len(songs_to_add)} songs added."}
|
||||
elif data.get("action") == "get_toplay":
|
||||
with self.file_lock:
|
||||
with open("/tmp/radioPlayer_toplay", "r") as f:
|
||||
return {"status": "ok", "data": [i.strip() for i in f.readlines() if i.strip()]}
|
||||
with open("/tmp/radioPlayer_toplay", "r") as f: return {"status": "ok", "data": [i.strip() for i in f.readlines() if i.strip()]}
|
||||
|
||||
activemod = Module()
|
||||
Reference in New Issue
Block a user