Use correct element and namepsace in AccountManager.isSupported()

This commit is contained in:
Florian Schmaus 2017-01-07 10:37:50 +01:00
parent 7167a55f81
commit cff91f5a92
1 changed files with 2 additions and 1 deletions

View File

@ -335,7 +335,8 @@ public final class AccountManager extends Manager {
throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
XMPPConnection connection = connection();
ExtensionElement extensionElement = connection.getFeature(Registration.ELEMENT, Registration.NAMESPACE);
ExtensionElement extensionElement = connection.getFeature(Registration.Feature.ELEMENT,
Registration.Feature.NAMESPACE);
if (extensionElement != null) {
return true;
}