add missing spaces in constructed title
authorMoritz Warning <moritzwarning@web.de>
Mon, 6 Apr 2020 14:03:56 +0000 (16:03 +0200)
committerMoritz Warning <moritzwarning@web.de>
Mon, 6 Apr 2020 14:03:56 +0000 (16:03 +0200)
index.js

index eb0a4695aa04dde3172988b17c6c8d9b50dc0457..09631dc2c30d4e8a8263a0ca7e03757559bd133e 100644 (file)
--- 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('/');
   }