1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Merge branch 'feature-restructure' into feature-webedit

This commit is contained in:
krateng 2022-04-16 02:04:43 +02:00
commit 263e7cd704

View File

@ -320,7 +320,8 @@ def post_scrobble(
length:int=None, length:int=None,
time:int=None, time:int=None,
nofix=None, nofix=None,
auth_result=None): auth_result=None,
**extra_kwargs):
"""Submit a new scrobble. """Submit a new scrobble.
:param string artist: Artist. Can be submitted multiple times as query argument for multiple artists. :param string artist: Artist. Can be submitted multiple times as query argument for multiple artists.
@ -358,15 +359,22 @@ def post_scrobble(
) )
if result: if result:
return { response = {
'status': 'success', 'status': 'success',
'track': { 'track': {
'artists':result['track']['artists'], 'artists':result['track']['artists'],
'title':result['track']['title'] 'title':result['track']['title']
} }
} }
if extra_kwargs:
response['warnings'] = [
{'type':'invalid_keyword_ignored','value':k}
for k in extra_kwargs
]
else: else:
return {"status":"failure"} response = {"status":"failure"}
return response