Skip to content

Commit

Permalink
Update audioscrobbler.liq (#4271)
Browse files Browse the repository at this point in the history
Co-authored-by: Romain Beauxis <[email protected]>
  • Loading branch information
gAlleb and toots authored Dec 15, 2024
1 parent 5cb4ad6 commit 95fb55b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/extra/audioscrobbler.liq
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def audioscrobbler.api.track.scrobble(
~api_secret=null(),
~artist,
~track,
~timestamp=time(),
~timestamp=null(),
~album=null(),
~context=null(),
~streamId=null(),
Expand All @@ -307,7 +307,7 @@ def audioscrobbler.api.track.scrobble(
[
("track", track),
("artist", artist),
("timestamp", string(timestamp)),
("timestamp", string(timestamp ?? time())),
...(null.defined(album) ? [("album", null.get(album))] : [] ),
...(null.defined(context) ? [("context", null.get(context))] : [] ),
...(null.defined(streamId) ? [("streamId", null.get(streamId))] : [] ),
Expand Down

0 comments on commit 95fb55b

Please sign in to comment.