From c32aa05ab00c6319fea432bccb38788fdfbb3010 Mon Sep 17 00:00:00 2001 From: Tijana Maksimovic Date: Fri, 27 Apr 2018 11:54:42 +0200 Subject: [PATCH] TT#33811 Login: Could not login via Safari Error 301 Moved Permanently, usually browsers redirect the request automatically to the new location, which wasn't the case with Safari Change-Id: I3eb42750cc58d6a8ca6d512c9121e6d48f981b61 --- src/api/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/user.js b/src/api/user.js index a4e0ac01..895c87f4 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -57,7 +57,7 @@ export function getSubscriberById(id) { export function getCapabilities() { return new Promise((resolve, reject)=>{ - Vue.http.get('/api/capabilities').then((result)=>{ + Vue.http.get('/api/capabilities/').then((result)=>{ var capabilities = {}; var body = JSON.parse(result.body); if(_.isArray(body["_embedded"]["ngcp:capabilities"])) {