From f6316ca956d6ba8973eba62ec05cd4c676267d9c Mon Sep 17 00:00:00 2001 From: NBTX Date: Sun, 20 Oct 2019 02:22:24 +0100 Subject: [PATCH] Fix proxy URL --- pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.vue b/pages/index.vue index 3c4553356..7581936ab 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -711,7 +711,7 @@ const config = this.$store.state.postwoman.settings.PROXY_ENABLED ? { method: 'POST', - url: '/proxy', + url: `${window.location.protocol}//${window.location.host}/proxy`, data: requestOptions } : requestOptions;