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

Adjusted reparse additions to new branch changes

This commit is contained in:
krateng 2022-04-22 17:25:58 +02:00
parent e9189b8903
commit a8f8d86ec1
2 changed files with 17 additions and 13 deletions

View File

@ -680,6 +680,10 @@ def merge_artists(target_id,source_ids):
@api.post("reparse_scrobble")
@authenticated_function(api=True)
@catch_exceptions
def reparse_scrobble(timestamp):
"""Internal Use Only"""
database.reparse_scrobble(timestamp)
result = database.reparse_scrobble(timestamp)
return {
"status":"success"
}