From: Moritz Warning Date: Mon, 6 Apr 2020 14:03:56 +0000 (+0200) Subject: add missing spaces in constructed title X-Git-Tag: v2.2.1~28 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4c3bc7c71fff5923266a043b2950b771e5db2613;p=web%2Ffirmware-selector-openwrt-org.git add missing spaces in constructed title --- diff --git a/index.js b/index.js index eb0a469..09631dc 100644 --- a/index.js +++ b/index.js @@ -28,7 +28,7 @@ function build_asa_request() { if (e.title) { return e.title; } else { - return ((e.vendor || '') + (e.model || '') + (e.variant || '')).trim(); + return ((e.vendor || '') + ' ' + (e.model || '') + ' ' + (e.variant || '')).trim(); } }).join('/'); }