From c231dc15bd87271f6862790ede92220a8a33fa3b Mon Sep 17 00:00:00 2001 From: meowarex Date: Sun, 1 Jun 2025 00:23:32 +1000 Subject: [PATCH] Removed Success Message --- plugins/clean-view-luna/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/clean-view-luna/src/index.ts b/plugins/clean-view-luna/src/index.ts index 66fbb3f..73c85d2 100644 --- a/plugins/clean-view-luna/src/index.ts +++ b/plugins/clean-view-luna/src/index.ts @@ -168,7 +168,7 @@ const onTrackChanged = function (method: number = 0): void { // Only update if the image source has actually changed if (albumImageSrc && albumImageSrc !== currentTrackSrc) { currentTrackSrc = albumImageSrc; - trace.msg.log(`Track changed, updating background: ${albumImageSrc}`); + //trace.msg.log(`Track changed, updating background: ${albumImageSrc}`); // Setting background to the *="nowPlayingContainer" element const nowPlayingContainerElement = document.querySelector('[class*="_nowPlayingContainer"]') as HTMLElement;