From 31528a520245747b136d9194ba126445e71d4361 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 28 Sep 2020 17:06:25 -0400 Subject: [PATCH] fix: manifest - use absolute URL for start_url --- src/controllers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/index.js b/src/controllers/index.js index 75c3fa0f3d..f2f58c6ad6 100644 --- a/src/controllers/index.js +++ b/src/controllers/index.js @@ -248,7 +248,7 @@ Controllers.manifest = function (req, res, next) { var manifest = { name: meta.config.title || 'NodeBB', short_name: meta.config['title:short'] || meta.config.title || 'NodeBB', - start_url: nconf.get('relative_path') + '/', + start_url: nconf.get('url'), display: 'standalone', orientation: 'portrait', theme_color: meta.config.themeColor || '#ffffff',