Sign-in page: show the logo when the page is opened without redirect_uri

The early return for a missing redirect_uri came before the logo loader,
so the logo stayed hidden behind data-loading. An upstream bug, surfaced by
the rebrand check.
This commit is contained in:
2026-09-18 10:58:39 -07:00
parent 68523374d3
commit 189f688768
3 changed files with 3 additions and 1 deletions
+2
View File
@@ -347,6 +347,8 @@
setText($('title'), 'Sign in with an app');
setText($('subtitle'), 'This page is opened automatically by your mail, calendar or contacts app to authorize access to your account.');
showError('This sign-in page cannot be used directly. Please start the sign-in from your app instead. (The required "redirect_uri" parameter is missing.)');
// The logo loader below never runs on this path, so reveal the default logo here.
$('logo-wrap').removeAttribute('data-loading');
return;
}