mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
fix: wrong artist name sent while scrobbling #958
This commit is contained in:
parent
70d5c57334
commit
dcbe7294b7
@ -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,
|
||||
|
@ -72,12 +72,6 @@
|
||||
"explore_genres"
|
||||
],
|
||||
|
||||
"it": [
|
||||
"audio_source",
|
||||
"go_to_album",
|
||||
"discord_rich_presence"
|
||||
],
|
||||
|
||||
"ja": [
|
||||
"go_to_album",
|
||||
"discord_rich_presence",
|
||||
|
Loading…
Reference in New Issue
Block a user