From 121aa44fd1e4232f5ef034b6ca860868eaf7b282 Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Fri, 27 Mar 2026 15:42:30 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/listenbrainz.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/listenbrainz.js b/js/listenbrainz.js index b6ab35a..e894a61 100644 --- a/js/listenbrainz.js +++ b/js/listenbrainz.js @@ -253,7 +253,7 @@ export class ListenBrainzScrobbler { const trackKey = `${track.artist.name}-${track.title}`; if (!this.isEnabled() || this.lovingTracks.has(trackKey)) return; this.lovingTracks.add(trackKey); - + try { const apiUrl = this.getApiUrl(); const mbids = await this._lookupMbids(track);