From b58b6fa6918f09a5e10a85f47598f2a4c35e3c9f Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 17 Sep 2019 11:09:40 +0200 Subject: [PATCH] Fix back button in teams --- www/common/outer/team.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/team.js b/www/common/outer/team.js index a683e9aaa..17cd2ae9d 100644 --- a/www/common/outer/team.js +++ b/www/common/outer/team.js @@ -362,7 +362,7 @@ define([ } }); - if (!id) { return; } + if (!id) { return void cb(); } // If the team is loading, as ourselves in the list if (ctx.onReadyHandlers[id]) { var _idx = ctx.onReadyHandlers[id].indexOf(cId);