fix regex in proxy

This commit is contained in:
Kendall Garner
2025-06-28 07:29:42 -07:00
parent fb80b66310
commit c382e01f64
+1 -1
View File
@@ -405,7 +405,7 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
}
case 'proxy': {
const toFetch = currentState.song?.imageUrl?.replaceAll(
/&(size|width|height=\d+)/g,
/&(size|width|height)=\d+/g,
'',
);