feat: naive scrobbling integration

This commit is contained in:
Lei Nelissen
2023-04-27 15:08:10 +02:00
parent fb4d3932e5
commit 0bf2775c93
10 changed files with 176 additions and 9 deletions

View File

@@ -33,7 +33,17 @@ const persistConfig: PersistConfig<Omit<AppState, '_persist'>> = {
queued: []
}
};
}
},
// @ts-expect-error migrations are poorly typed
3: (state: AppState) => {
return {
...state,
settings: {
...state.settings,
enablePlaybackReporting: true,
}
};
},
})
};