From 4f04e01aecd354dc87c3c15deb9f6cd112fabf22 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 17 May 2022 19:32:16 +0100 Subject: [PATCH] :zap: Increased overridden timeout --- src/components/Widgets/BlacklistCheck.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Widgets/BlacklistCheck.vue b/src/components/Widgets/BlacklistCheck.vue index edf5e419..ad5975b9 100644 --- a/src/components/Widgets/BlacklistCheck.vue +++ b/src/components/Widgets/BlacklistCheck.vue @@ -58,7 +58,7 @@ export default { if (!this.ipAddress) { this.getUsersIpAddress(); return; } - this.defaultTimeout = 20000; + this.defaultTimeout = 200000; const options = { Authorization: `Basic ${this.apiKey}` }; this.makeRequest(this.endpoint, options).then(this.processData); },