mirror of
https://github.com/sanderfoobar/ircradio.git
synced 2025-03-29 19:06:52 +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")
|
@app.websocket("/ws")
|
||||||
+async def np():
|
async def np():
|
||||||
|
last_song = ""
|
||||||
while True:
|
while True:
|
||||||
"""get current song from history"""
|
"""get current song from history"""
|
||||||
history = Radio.history()
|
history = Radio.history()
|
||||||
@ -124,7 +125,9 @@ async def user_library():
|
|||||||
song = history[0]
|
song = history[0]
|
||||||
val = song.title
|
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)
|
await asyncio.sleep(5)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user