From 5437aac346d73f74bb5968e2b63c0a9fec196b91 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Sat, 27 May 2023 18:34:48 -0500 Subject: [PATCH] Fixed: Use relative paths instead of absolute paths for webmanifest (cherry picked from commit 8e771f95ade919a8f1ed7b48675f032a6c508cb2) --- frontend/src/Content/Images/Icons/manifest.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/src/Content/Images/Icons/manifest.json b/frontend/src/Content/Images/Icons/manifest.json index d14732f60..f53279dd3 100644 --- a/frontend/src/Content/Images/Icons/manifest.json +++ b/frontend/src/Content/Images/Icons/manifest.json @@ -1,18 +1,19 @@ { - "name": "", + "name": "Prowlarr", "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" -} \ No newline at end of file +}