summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-10 15:08:36 +0300
committerAndrew Dolgov <[email protected]>2021-03-10 15:08:36 +0300
commit5bc47451e1ae5e6ceb545d9a0dbe9dd47df51e0b (patch)
treec35e44b937b1a225b7bff490c5ea56f9b9c39f33 /plugins/shorten_expanded
parent36ad46e60db2e44f508b942379abd189bbb3dfa6 (diff)
shorten_expanded: increase timeout
Diffstat (limited to 'plugins/shorten_expanded')
-rw-r--r--plugins/shorten_expanded/init.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js
index 40bb80790..d7bd6ef91 100644
--- a/plugins/shorten_expanded/init.js
+++ b/plugins/shorten_expanded/init.js
@@ -51,7 +51,7 @@ Plugins.Shorten_Expanded = {
const id = setTimeout(() => {
clearTimeout(id);
reject(new Error("timed out"));
- }, 250)
+ }, 2000)
})
promises.push(Promise.race([promise, timeout]));