Skip to content

Commit

Permalink
fix: wrong artist name sent while scrobbling KRTirtho#958
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Dec 27, 2023
1 parent 70d5c57 commit dcbe729
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion lib/provider/scrobbler_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ScrobblerNotifier extends PersistedStateNotifier<ScrobblerState?> {
_scrobbleController.stream.listen((track) async {
try {
await state?.scrobblenaut.track.scrobble(
artist: TypeConversionUtils.artists_X_String(track.artists!),
artist: track.artists.first.name!,
track: track.name!,
album: track.album!.name!,
chosenByUser: true,
Expand Down
6 changes: 0 additions & 6 deletions untranslated_messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@
"explore_genres"
],

"it": [
"audio_source",
"go_to_album",
"discord_rich_presence"
],

"ja": [
"go_to_album",
"discord_rich_presence",
Expand Down

0 comments on commit dcbe729

Please sign in to comment.