Fix for listening activity

This commit is contained in:
localhost_frssoft 2023-03-10 09:56:49 +03:00
parent 78305a8e33
commit ef88593f60
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ if track_activity_history:
def time_observer(_name, value):
# Here, _value is either None if nothing is playing or a float containing
# fractional seconds since the beginning of the file.
if value and player.http_header_fields != [] and player.pause is False:
if value and src.fw_api.current_instance.token != None and player.pause is False:
if value >= 30.0 and value <= 30.1:
# detect 30 secs for reporting listen activity
track = player_fw_storage.storage.get(track_url_to_uuid())