fix playerbar waveform potentially disappearing

This commit is contained in:
jeffvli
2025-12-04 18:19:06 -08:00
parent 8c545f6d21
commit e37c76301d
3 changed files with 118 additions and 14 deletions
+4 -1
View File
@@ -16,7 +16,10 @@ export const logMsg = {
discordRpcTrackChanged: 'Track was changed for Discord RPC',
discordRpcUpdateSkipped: 'Activity was not updated for Discord RPC',
},
[LogCategory.OTHER]: {},
[LogCategory.OTHER]: {
error: 'An error occurred',
warning: 'A warning occurred',
},
[LogCategory.PLAYER]: {
addToQueueByData: 'Added to queue by data',
addToQueueByFetch: 'Added to queue by fetch',
+1
View File
@@ -4,6 +4,7 @@ export enum LogCategory {
ANALYTICS = 'analytics',
API = 'api',
EXTERNAL = 'external',
GENERAL = 'general',
OTHER = 'other',
PLAYER = 'player',
SCROBBLE = 'scrobble',