Add deezer as default search

This commit is contained in:
BarsTiger
2023-10-24 23:19:09 +03:00
parent 495202d949
commit 4c7a885665
16 changed files with 155 additions and 42 deletions

View File

@@ -16,11 +16,11 @@ class DeezerDriver:
return data
async def reverse_get_track(self, track_id: int | str):
async def reverse_get_track(self, track_id: str):
return await self.engine.call_api(
'song.getData',
params={
'SNG_ID': str(track_id)
'SNG_ID': track_id
}
)