From 179c845026164abaeca4fc7d6bd3e4a05d757354 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Thu, 27 May 2021 10:42:39 -0700 Subject: [PATCH] Don't hard code channels URL to ensure proper lang redirect. --- .../contentcuration/frontend/accounts/pages/Main.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentcuration/contentcuration/frontend/accounts/pages/Main.vue b/contentcuration/contentcuration/frontend/accounts/pages/Main.vue index 46fabc4b92..5ec186d1a2 100644 --- a/contentcuration/contentcuration/frontend/accounts/pages/Main.vue +++ b/contentcuration/contentcuration/frontend/accounts/pages/Main.vue @@ -128,7 +128,7 @@ }; return this.login(credentials) .then(() => { - window.location.assign(this.nextParam || '/channels'); + window.location.assign(this.nextParam || window.Urls.channels()); }) .catch(err => { this.busy = false;