From ce62c58b0876ec111fffb74d72cfc80195709720 Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Wed, 13 Nov 2019 02:15:37 -0500 Subject: [PATCH] Remove the leading /web/ from the manifest to avoid PWA titles Fixes #575. After this is added, whenever someone changes their base URL, they will have to make a new shortcut on their homescreen. Tested on iOS, have not tested on Android. Desktop Web remains unaffected. --- src/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.json b/src/manifest.json index 289c05699c..a87b086dac 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -4,7 +4,7 @@ "description": "Jellyfin: the Free Software Media System.", "lang": "en-US", "short_name": "Jellyfin", - "start_url": "/web/index.html#!/home.html", + "start_url": "index.html#!/home.html", "theme_color": "#101010", "background_color": "#101010", "display": "standalone",