From c537477d3a43545164acb0a3c3e1cf0656f82ca2 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Fri, 8 Nov 2019 00:28:58 +0530 Subject: [PATCH] :bug: Better error prompt. Fixes #283 --- pages/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/index.vue b/pages/index.vue index eb109ab70..937e0d4e9 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -763,7 +763,7 @@ export default { responseText && this.response.body !== "(waiting to send request)" && this.response.body !== "Loading..." && - this.response.body !== "See JavaScript console (F12) for details." + this.response.body.indexOf("console") == -1 ) { responseText.innerText = this.responseType === "application/json" || @@ -1375,14 +1375,14 @@ export default { return; } else { this.response.status = error.message; - this.response.body = "See JavaScript console (F12) for details."; + this.response.body = error + "\nCheck console for details."; this.$toast.error(error + " (F12 for details)", { icon: "error" }); if (!this.$store.state.postwoman.settings.PROXY_ENABLED) { this.$toast.info("Try enabling Proxy", { icon: "help", - duration: 5000, + duration: 8000, action: { text: "Settings", onClick: (e, toastObject) => {