diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-12-30 08:46:47 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-12-30 20:29:20 -0500 |
commit | bc39dfe144daccdd6939a55c7e90d9b1f080b9ea (patch) | |
tree | 56d6ebe0b4e6159b20ecc26265043ff01f7ae625 /mailnews/imap | |
parent | f2a31df18b416d5ee235552eaa084e580023286c (diff) | |
download | aura-central-bc39dfe144daccdd6939a55c7e90d9b1f080b9ea.tar.gz |
Bug 1176399 - Multiple requests for master password when GMail OAuth2 is enabled.
Diffstat (limited to 'mailnews/imap')
-rw-r--r-- | mailnews/imap/src/nsImapProtocol.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mailnews/imap/src/nsImapProtocol.cpp b/mailnews/imap/src/nsImapProtocol.cpp index 4cfa9dab2..c8e3ceb67 100644 --- a/mailnews/imap/src/nsImapProtocol.cpp +++ b/mailnews/imap/src/nsImapProtocol.cpp @@ -8513,6 +8513,13 @@ nsresult nsImapProtocol::GetPassword(nsCString &password, return rv; } +NS_IMETHODIMP nsImapProtocol::OnPromptStartAsync(nsIMsgAsyncPromptCallback *aCallback) +{ + bool result = false; + OnPromptStart(&result); + return aCallback->OnAuthResult(result); +} + // This is called from the UI thread. NS_IMETHODIMP nsImapProtocol::OnPromptStart(bool *aResult) |