lastfm: Fix discord application

main
V 1 year ago
parent 60325c6aa5
commit 89a6c575c9
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905

@ -72,7 +72,7 @@ enum ActivityFlag {
INSTANCE = 1 << 0, INSTANCE = 1 << 0,
} }
const applicationId = "1043533871037284423"; const applicationId = "1108588077900898414";
const placeholderId = "2a96cbd8b46e442fc41c2b86b821562f"; const placeholderId = "2a96cbd8b46e442fc41c2b86b821562f";
const logger = new Logger("LastFMRichPresence"); const logger = new Logger("LastFMRichPresence");
@ -167,6 +167,7 @@ export default definePlugin({
settings, settings,
start() { start() {
this.updatePresence();
this.updateInterval = setInterval(() => { this.updatePresence(); }, 16000); this.updateInterval = setInterval(() => { this.updatePresence(); }, 16000);
}, },
@ -198,7 +199,7 @@ export default definePlugin({
const trackData = json.recenttracks?.track[0]; const trackData = json.recenttracks?.track[0];
if (!trackData || !trackData["@attr"]?.nowplaying) if (!trackData?.["@attr"]?.nowplaying)
return null; return null;
// why does the json api have xml structure // why does the json api have xml structure

Loading…
Cancel
Save