Merge pull request #311 from guusdk/sint-accountmanager-disconnect

Admin should be disconnected after tests.
This commit is contained in:
Florian Schmaus 2019-04-17 21:32:42 +02:00 committed by GitHub
commit 2dbc32340d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -240,6 +240,10 @@ public class XmppConnectionManager<DC extends AbstractXMPPConnection> {
}
connections.clear();
if (accountRegistrationConnection != null) {
accountRegistrationConnection.disconnect();
}
}