fix regex in proxy

This commit is contained in:
Kendall Garner 2025-06-28 07:29:42 -07:00
parent fb80b66310
commit c382e01f64
No known key found for this signature in database
GPG key ID: 9355F387FE765C94

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,
'',
);