From 549a1288154744e77523f584ef256bee663bb585 Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 18 Feb 2021 15:00:46 +0100 Subject: [PATCH] Fix worker stuck offline --- www/common/outer/team.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/common/outer/team.js b/www/common/outer/team.js index 271d39bd3..0ef5c4763 100644 --- a/www/common/outer/team.js +++ b/www/common/outer/team.js @@ -1904,6 +1904,7 @@ define([ } openChannel(ctx, teams[id], id, waitFor(function (err) { if (err) { + delete ctx.onReadyHandlers[id]; var txt = typeof(err) === "string" ? err : (err.type || err.message); Feedback.send("TEAM_LOADING_ERROR="+txt); return void console.error(err);