mirror of
https://github.com/sanderfoobar/ircradio.git
synced 2024-12-23 03:02:46 +01:00
Websocket only sends new track (or updated name)
This commit is contained in:
parent
c43ad4bffd
commit
5e966b872c
@ -113,7 +113,8 @@ async def user_library():
|
||||
|
||||
|
||||
@app.websocket("/ws")
|
||||
+async def np():
|
||||
async def np():
|
||||
last_song = ""
|
||||
while True:
|
||||
"""get current song from history"""
|
||||
history = Radio.history()
|
||||
@ -124,7 +125,9 @@ async def user_library():
|
||||
song = history[0]
|
||||
val = song.title
|
||||
|
||||
data = json.dumps({"now_playing": val})
|
||||
if val != last_song:
|
||||
data = json.dumps({"now_playing": val})
|
||||
await websocket.send(f"{data}")
|
||||
|
||||
await websocket.send(f"{data}")
|
||||
last_song = val
|
||||
await asyncio.sleep(5)
|
||||
|
Loading…
Reference in New Issue
Block a user