diff --git a/app_vue3/src/stores/gallery.ts b/app_vue3/src/stores/gallery.ts index 5008fbf..537c155 100644 --- a/app_vue3/src/stores/gallery.ts +++ b/app_vue3/src/stores/gallery.ts @@ -239,13 +239,13 @@ export const useGalleryStore = defineStore('gallery', { // Decode HTML entities in title (Reddit API returns encoded text) if (data.title) { data.title = data.title - .replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/"/g, '"') .replace(/'/g, "'") .replace(/'/g, "'") .replace(///g, '/') + .replace(/&/g, '&') } // Album / Gallery if (data.is_gallery && data.media_metadata) {