fix: wrong artist name sent while scrobbling #958

This commit is contained in:
Kingkor Roy Tirtho 2023-12-27 21:57:18 +06:00
parent 70d5c57334
commit dcbe7294b7
2 changed files with 1 additions and 7 deletions

View File

@ -43,7 +43,7 @@ class ScrobblerNotifier extends PersistedStateNotifier<ScrobblerState?> {
_scrobbleController.stream.listen((track) async { _scrobbleController.stream.listen((track) async {
try { try {
await state?.scrobblenaut.track.scrobble( await state?.scrobblenaut.track.scrobble(
artist: TypeConversionUtils.artists_X_String(track.artists!), artist: track.artists.first.name!,
track: track.name!, track: track.name!,
album: track.album!.name!, album: track.album!.name!,
chosenByUser: true, chosenByUser: true,

View File

@ -72,12 +72,6 @@
"explore_genres" "explore_genres"
], ],
"it": [
"audio_source",
"go_to_album",
"discord_rich_presence"
],
"ja": [ "ja": [
"go_to_album", "go_to_album",
"discord_rich_presence", "discord_rich_presence",