From 7ecb27463c80dc7b113839b3b6a2b8218b8680c2 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 24 Dec 2019 14:04:23 +0100 Subject: [PATCH] Added missing '@' --- .../http/static/js/plugins/camera.android.ipcam/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/http/static/js/plugins/camera.android.ipcam/index.js b/platypush/backend/http/static/js/plugins/camera.android.ipcam/index.js index 05d72558..565fd506 100644 --- a/platypush/backend/http/static/js/plugins/camera.android.ipcam/index.js +++ b/platypush/backend/http/static/js/plugins/camera.android.ipcam/index.js @@ -88,7 +88,7 @@ Vue.component('camera-android-ipcam', { if (cam.name in this.config.cameras && this.config.cameras[cam.name].username) { cam[attr] = 'http://' + this.config.cameras[cam.name].username + ':' + - this.config.cameras[cam.name].password + cam[attr].substr(7); + this.config.cameras[cam.name].password + '@' + cam[attr].substr(7); } }