From a56618ad8fba77ab9da5c1e48deb7689a849997a Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 13 Feb 2020 10:20:32 +0100 Subject: [PATCH] web - fix warnings --- scripts/code-web.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/code-web.js b/scripts/code-web.js index 26fb980e3d5..4556e7d7e6d 100755 --- a/scripts/code-web.js +++ b/scripts/code-web.js @@ -66,11 +66,11 @@ const server = http.createServer((req, res) => { // manifest res.writeHead(200, { 'Content-Type': 'application/json' }); return res.end(JSON.stringify({ - "name": "Code Web - OSS", - "short_name": "Code Web - OSS", - "start_url": "/", - "lang": "en-US", - "display": "standalone" + 'name': 'Code Web - OSS', + 'short_name': 'Code Web - OSS', + 'start_url': '/', + 'lang': 'en-US', + 'display': 'standalone' })); } if (/^\/static\//.test(pathname)) {