mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
fix regex in proxy
This commit is contained in:
parent
fb80b66310
commit
c382e01f64
1 changed files with 1 additions and 1 deletions
|
|
@ -405,7 +405,7 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
|
||||||
}
|
}
|
||||||
case 'proxy': {
|
case 'proxy': {
|
||||||
const toFetch = currentState.song?.imageUrl?.replaceAll(
|
const toFetch = currentState.song?.imageUrl?.replaceAll(
|
||||||
/&(size|width|height=\d+)/g,
|
/&(size|width|height)=\d+/g,
|
||||||
'',
|
'',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue