From fcda83205230b96d96f68d6a1a2c1b6d212bddf4 Mon Sep 17 00:00:00 2001 From: RoiEX Date: Mon, 6 Mar 2017 20:39:26 +0100 Subject: [PATCH] Add spaces --- src/controllers/osd.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/osd.js b/src/controllers/osd.js index cafbaccda3..13d9b659d5 100644 --- a/src/controllers/osd.js +++ b/src/controllers/osd.js @@ -17,7 +17,7 @@ module.exports = function (req, res, next) { function generateXML() { return xml([{ OpenSearchDescription: [ - { _attr: { xmlns: 'http://a9.com/-/spec/opensearch/1.1/' }}, + { _attr: { xmlns: 'http://a9.com/-/spec/opensearch/1.1/' } }, { ShortName: String(meta.config.title || meta.config.browserTitle || 'NodeBB') }, { Description: String(meta.config.description || '') }, { Url: [{ @@ -26,7 +26,7 @@ function generateXML() { method: 'get', template: nconf.get('url') + '/search?term={searchTerms}&in=titlesposts', }, - }]}, + }] }, ], }], { declaration: true, indent: '\t' }); }