From 854b3045fe45006dd713ccbf2192e62cb0651c41 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Sun, 28 May 2023 11:28:13 -0500 Subject: [PATCH] Fix: Use relative paths instead of absolute paths for webmanifest --- frontend/src/Content/Images/Icons/manifest.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/Content/Images/Icons/manifest.json b/frontend/src/Content/Images/Icons/manifest.json index 1ee4080c03..37817250e9 100644 --- a/frontend/src/Content/Images/Icons/manifest.json +++ b/frontend/src/Content/Images/Icons/manifest.json @@ -2,16 +2,17 @@ "name": "Radarr", "icons": [ { - "src": "/Content/Images/Icons/android-chrome-192x192.png", + "src": "android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/Content/Images/Icons/android-chrome-512x512.png", + "src": "android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], + "start_url": "../../../../", "theme_color": "#3a3f51", "background_color": "#3a3f51", "display": "standalone"