From 0710c6488daa0b802c39cff22cd97a00b9777ce1 Mon Sep 17 00:00:00 2001 From: RoiEX Date: Sun, 5 Mar 2017 15:15:41 +0100 Subject: [PATCH] Fix trailing commas --- src/meta/osd.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/meta/osd.js b/src/meta/osd.js index 3928c535c3..dd11ff5d44 100644 --- a/src/meta/osd.js +++ b/src/meta/osd.js @@ -15,7 +15,7 @@ module.exports = function (Meta) { { _attr: { xmlns: 'http://a9.com/-/spec/opensearch/1.1/', - } + }, }, { ShortName: String(Meta.config.title || Meta.config.browserTitle || 'NodeBB'), @@ -30,11 +30,11 @@ module.exports = function (Meta) { type: 'text/html', method: 'get', template: nconf.get('url') + '/search?term={searchTerms}&in=titlesposts', - } - } + }, + }, ] - } - ] + }, + ], }; fs.writeFile(osdFilePath, xml([osdObject], { declaration: true, indent: '\t' }), callback); };