From 68f677f63e26c2a78f29852a4e33335e151e30c3 Mon Sep 17 00:00:00 2001 From: andreas Date: Wed, 20 Jul 2022 22:04:54 +0200 Subject: [PATCH] encoding of question mark character for media path --- src/frontend/app/ui/gallery/MediaIcon.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/app/ui/gallery/MediaIcon.ts b/src/frontend/app/ui/gallery/MediaIcon.ts index cfa0de5c..5733f73b 100644 --- a/src/frontend/app/ui/gallery/MediaIcon.ts +++ b/src/frontend/app/ui/gallery/MediaIcon.ts @@ -42,6 +42,7 @@ export class MediaIcon { // .replace(new RegExp('%', 'g'), '%25') // order important .replace(new RegExp('#', 'g'), '%23') .replace(new RegExp('\\$', 'g'), '%24') + .replace(new RegExp('\\?', 'g'), '%3F') ); }