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

Compare commits

..

No commits in common. "ca30309450012a86938efde802f9c59f5fe3a4d7" and "f3a04c79b1c37597cdf3cafcd95e3c923cd6a53f" have entirely different histories.

View File

@ -73,8 +73,6 @@ class AudioscrobblerLegacy(APIHandler):
client = self.mobile_sessions.get(key)
for count in range(50):
artist_key = f"a[{count}]"
album_key = f"b[{count}]"
length_key = f"l[{count}]"
track_key = f"t[{count}]"
time_key = f"i[{count}]"
if artist_key not in keys or track_key not in keys:
@ -84,19 +82,12 @@ class AudioscrobblerLegacy(APIHandler):
timestamp = int(keys[time_key])
except Exception:
timestamp = None
scrobble = {
#database.createScrobble(artists,title,timestamp)
self.scrobble({
'track_artists':[artiststr],
'track_title':titlestr,
'scrobble_time':timestamp,
}
if album_key in keys:
scrobble['album_name'] = keys[album_key]
if length_key in keys:
scrobble['track_length'] = keys[length_key]
#database.createScrobble(artists,title,timestamp)
self.scrobble(scrobble, client=client)
'scrobble_time':timestamp
},client=client)
return 200,"OK\n"