From a60709ff731a30efb3a3e4fa4902611e0e125821 Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Wed, 30 Aug 2017 19:23:01 +0200 Subject: [PATCH] Infinite spinner popup leads to frame attempting to reload and failing --- www/common/common-realtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/common-realtime.js b/www/common/common-realtime.js index 2222dc2bc..c9dd74b29 100644 --- a/www/common/common-realtime.js +++ b/www/common/common-realtime.js @@ -44,7 +44,7 @@ define([ // inform the user their session is in a bad state Cryptpad.confirm(Messages.realtime_unrecoverableError, function (yes) { if (!yes) { return; } - window.location.reload(); + window.parent.location.reload(); }); common.infiniteSpinnerDetected = true; }, 2000);