From 42ce985c842c3effe487afcbc89b099fee6d28fe Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Tue, 5 May 2026 14:24:39 +0200 Subject: [PATCH] Fix inconsistencies for guest banner display --- www/common/common-ui-elements.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 183fdd549..3c84ad954 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -3460,7 +3460,7 @@ define([ crowdfundingState = true; common.getAttribute(['general', 'crowdfunding'], function (err, val) { - if (err || val === false) { crowdfundingState = false; return; } + if ((err && common.isLoggedIn()) || val === false) { crowdfundingState = false; return; } common.getSframeChannel().query('Q_CROWDFUNDING_SHOULD_SHOW', null, function (err, result) { if (err || !result || !result.show) { crowdfundingState = false;