fix: Last.fm auth stability improvements (v1.7.2)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-03-20 19:14:04 +01:00
parent a99e2e0657
commit 9d4997baac
6 changed files with 24 additions and 7 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { invoke } from '@tauri-apps/api/core';
const API_KEY = import.meta.env.VITE_LASTFM_API_KEY as string;
const API_SECRET = import.meta.env.VITE_LASTFM_API_SECRET as string;
const API_KEY = '9917fb39049225a13bec225ad6d49054';
const API_SECRET = '03817dda02bee87a178aab7581abae3b';
export function lastfmIsConfigured(): boolean {
return Boolean(API_KEY && API_SECRET);