mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Merge branch 'master' into feature-restructure
This commit is contained in:
commit
5b8e2debbc
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user