From c382e01f6471dd46f78a913aae7538f156b2cc62 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sat, 28 Jun 2025 07:29:42 -0700 Subject: [PATCH] fix regex in proxy --- src/main/features/core/remote/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/features/core/remote/index.ts b/src/main/features/core/remote/index.ts index be192734..fe3f8068 100644 --- a/src/main/features/core/remote/index.ts +++ b/src/main/features/core/remote/index.ts @@ -405,7 +405,7 @@ const enableServer = (config: RemoteConfig): Promise => { } case 'proxy': { const toFetch = currentState.song?.imageUrl?.replaceAll( - /&(size|width|height=\d+)/g, + /&(size|width|height)=\d+/g, '', );