From f73e6591b36ea9a52aa9c15d57296dad1513dc1a Mon Sep 17 00:00:00 2001 From: ccd0 Date: Tue, 1 Dec 2015 03:45:00 -0800 Subject: [PATCH] Extend waiting time for thread creation. #362 --- src/Posting/QR.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index c109d7b84..15290fa49 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -823,7 +823,7 @@ QR = $.ajax url, onloadend: -> attempts++ - if attempts >= 5 or @status is 200 + if attempts >= 6 or @status is 200 cb() else setTimeout check, attempts * $.SECOND