diff options
author | Sebastien Vincent <seb@jitsi.org> | 2011-03-23 12:25:58 +0000 |
---|---|---|
committer | Sebastien Vincent <seb@jitsi.org> | 2011-03-23 12:25:58 +0000 |
commit | a476b63e03be18f658c4a23bb21c5f107de4287d (patch) | |
tree | 6e2f9280ecbfc3ea7e482610cbebceddf019a7df /src | |
parent | 76a11b6d6cd34c56a67337445f13a62d2784a74c (diff) | |
download | jitsi-a476b63e03be18f658c4a23bb21c5f107de4287d.zip jitsi-a476b63e03be18f658c4a23bb21c5f107de4287d.tar.gz jitsi-a476b63e03be18f658c4a23bb21c5f107de4287d.tar.bz2 |
Again default value for Google Contacts supports is true.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/java/sip/communicator/impl/protocol/jabber/ProtocolProviderServiceJabberImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/impl/protocol/jabber/ProtocolProviderServiceJabberImpl.java b/src/net/java/sip/communicator/impl/protocol/jabber/ProtocolProviderServiceJabberImpl.java index 7521866..0945813 100644 --- a/src/net/java/sip/communicator/impl/protocol/jabber/ProtocolProviderServiceJabberImpl.java +++ b/src/net/java/sip/communicator/impl/protocol/jabber/ProtocolProviderServiceJabberImpl.java @@ -1909,7 +1909,7 @@ public class ProtocolProviderServiceJabberImpl { if(accountID.getAccountPropertyBoolean( "GOOGLE_CONTACTS_ENABLED", - false)) + true)) { logger.info("Register Google Contacts service as contact source"); GoogleContactsService googleService = @@ -1935,7 +1935,7 @@ public class ProtocolProviderServiceJabberImpl { if(accountID.getAccountPropertyBoolean( "GOOGLE_CONTACTS_ENABLED", - false)) + true)) { logger.info("Unregister Google Contacts service as contact source"); |