From 53771ec73235de3767d222c70b7d68614f1508c7 Mon Sep 17 00:00:00 2001 From: VitorVieiraZ Date: Tue, 28 Jan 2025 12:11:28 -0300 Subject: [PATCH] fixing missing auth dialog call --- core/merginapi.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/merginapi.cpp b/core/merginapi.cpp index efb1bd1dd..7d20f263e 100644 --- a/core/merginapi.cpp +++ b/core/merginapi.cpp @@ -3971,7 +3971,8 @@ void MerginApi::reloadProjectRole( const QString &projectFullName ) return; } - QNetworkReply *reply = getProjectInfo( projectFullName ); + bool withAuth = false; // we might be logging out and that would trigger missing auth dialog + QNetworkReply *reply = getProjectInfo( projectFullName, withAuth ); if ( !reply ) return;