mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
reworked persistent queues
This commit is contained in:
parent
9994777974
commit
80c2ed3f98
6 changed files with 1794 additions and 1833 deletions
|
@ -69,6 +69,7 @@ class Notifier(DownloadQueueNotifier):
|
|||
await sio.emit('cleared', serializer.encode(id))
|
||||
|
||||
dqueue = DownloadQueue(config, Notifier())
|
||||
app.on_startup.append(lambda app: dqueue.initialize())
|
||||
|
||||
@routes.post(config.URL_PREFIX + 'add')
|
||||
async def add(request):
|
||||
|
@ -93,7 +94,6 @@ async def delete(request):
|
|||
|
||||
@sio.event
|
||||
async def connect(sid, environ):
|
||||
await dqueue.importQueue()
|
||||
await sio.emit('all', serializer.encode(dqueue.get()), to=sid)
|
||||
|
||||
@routes.get(config.URL_PREFIX)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue