summaryrefslogtreecommitdiff
path: root/finch/gntaccount.c
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-10-23 02:16:19 -0500
committerGary Kramlich <grim@reaperworld.com>2022-10-23 02:16:19 -0500
commit066d002df6da580efa322704298a2847619266c1 (patch)
treefe9425a80355ef39e6d555160fc29753f7c7013e /finch/gntaccount.c
parentd268b66cf8558f8b4008cdd3c019aafaeaeb3399 (diff)
downloadpidgin-066d002df6da580efa322704298a2847619266c1.tar.gz
Fix connection errors getting deleted when an account is disconnected
Testing Done: * Ran the unit tests with the new test * Caused a resource conflict on XMPP to verify that notification was displayed * Attempted to connect an IRC account that had a bad hostname and verified that notification was displayed. * Not integration testing was done for Finch. Reviewed at https://reviews.imfreedom.org/r/1944/
Diffstat (limited to 'finch/gntaccount.c')
-rw-r--r--finch/gntaccount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/finch/gntaccount.c b/finch/gntaccount.c
index 2e2363b6d0..fd2ae3db80 100644
--- a/finch/gntaccount.c
+++ b/finch/gntaccount.c
@@ -693,7 +693,7 @@ really_delete_account(PurpleAccount *account)
}
manager = purple_notification_manager_get_default();
- purple_notification_manager_remove_with_account(manager, account);
+ purple_notification_manager_remove_with_account(manager, account, TRUE);
purple_accounts_delete(account);
}