diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 17:53:59 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 17:53:59 -0500 |
commit | 74e5265d3921f18c7d626004e898837adb466d0c (patch) | |
tree | 5bc34e298dd24e389781d2a1fce6132aed8b0819 /mailnews/compose/src | |
parent | bbf10b90975bc11e5ea2ac70196615a041b00f6f (diff) | |
download | UXP-74e5265d3921f18c7d626004e898837adb466d0c.tar UXP-74e5265d3921f18c7d626004e898837adb466d0c.tar.gz UXP-74e5265d3921f18c7d626004e898837adb466d0c.tar.lz UXP-74e5265d3921f18c7d626004e898837adb466d0c.tar.xz UXP-74e5265d3921f18c7d626004e898837adb466d0c.zip |
Bug 516464 - Remove passwords from cache when password manager contents are changed to prevent stale password attempts.
Tag #1273
Diffstat (limited to 'mailnews/compose/src')
-rw-r--r-- | mailnews/compose/src/nsMsgSendLater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailnews/compose/src/nsMsgSendLater.cpp b/mailnews/compose/src/nsMsgSendLater.cpp index 97206f12b..66c90fc0b 100644 --- a/mailnews/compose/src/nsMsgSendLater.cpp +++ b/mailnews/compose/src/nsMsgSendLater.cpp @@ -154,7 +154,7 @@ nsMsgSendLater::Observe(nsISupports *aSubject, const char* aTopic, mTimerSet = false; } - else if (!strcmp(aTopic, "xpcom-shutdown")) + else if (!strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID)) { // We're shutting down. Unsubscribe from the unsentFolder notifications // they aren't any use to us now, we don't want to start sending more |