Fix thumbnails for backgrounds containing a single quote

d41725cd4fb9858bcecc95540960d5799a776634

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
public/scripts/backgrounds.js+1 -1
@@ -524,7 +524,7 @@ async function resolveImageUrl(bg, isCustom) {
524 ? bg524 ? bg
525 : getThumbnailUrl('bg', bg);525 : getThumbnailUrl('bg', bg);
526526
527 return `url('${thumbnailUrl}')`;527 return `url("${thumbnailUrl}")`;
528}528}
529529
530/**530/**