aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/lastfm.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/lastfm.tsx b/src/plugins/lastfm.tsx
index 380d1ea..19620e0 100644
--- a/src/plugins/lastfm.tsx
+++ b/src/plugins/lastfm.tsx
@@ -72,7 +72,7 @@ enum ActivityFlag {
INSTANCE = 1 << 0,
}
-const applicationId = "1043533871037284423";
+const applicationId = "1108588077900898414";
const placeholderId = "2a96cbd8b46e442fc41c2b86b821562f";
const logger = new Logger("LastFMRichPresence");
@@ -167,6 +167,7 @@ export default definePlugin({
settings,
start() {
+ this.updatePresence();
this.updateInterval = setInterval(() => { this.updatePresence(); }, 16000);
},
@@ -198,7 +199,7 @@ export default definePlugin({
const trackData = json.recenttracks?.track[0];
- if (!trackData || !trackData["@attr"]?.nowplaying)
+ if (!trackData?.["@attr"]?.nowplaying)
return null;
// why does the json api have xml structure