From c64f40e54bc470852ea8faae75a265fac1f2f7a3 Mon Sep 17 00:00:00 2001 From: cwilvx Date: Mon, 30 Dec 2024 21:13:25 +0300 Subject: [PATCH] switch api keys --- app/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config.py b/app/config.py index 39b1d27c..3411d0ba 100644 --- a/app/config.py +++ b/app/config.py @@ -48,8 +48,8 @@ class UserConfig: # plugins enablePlugins: bool = True - lastfmApiKey: str = "5e5306fbf3e8e3bc92f039b6c6c4bd4e" - lastfmApiSecret: str = "0553005e93f9a4b4819d835182181806" + lastfmApiKey: str = "0553005e93f9a4b4819d835182181806" + lastfmApiSecret: str = "5e5306fbf3e8e3bc92f039b6c6c4bd4e" lastfmSessionKeys: dict[str, str] = field(default_factory=dict) def __post_init__(self):