feat: Discord Rich Presence album art via Last.fm (#341) (#817)

* feat: Discord Rich Presence album art via Last.fm

* fix: securely fetch album art
This commit is contained in:
Jack Merrill 2024-10-31 15:09:17 -04:00 committed by GitHub
parent 61d7e7c390
commit 21f4a78dd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 51 additions and 1 deletions

View file

@ -232,6 +232,7 @@ export interface SettingsState {
homeFeature: boolean;
homeItems: SortableItem<HomeItem>[];
language: string;
lastfmApiKey: string;
nativeAspectRatio: boolean;
passwordStore?: string;
playButtonBehavior: Play;
@ -377,6 +378,7 @@ const initialState: SettingsState = {
homeFeature: true,
homeItems,
language: 'en',
lastfmApiKey: '',
nativeAspectRatio: false,
passwordStore: undefined,
playButtonBehavior: Play.NOW,