diff --git a/app/src/main/java/com/etesync/syncadapter/ui/setup/BaseConfigurationFinder.kt b/app/src/main/java/com/etesync/syncadapter/ui/setup/BaseConfigurationFinder.kt index 7b58aa47..f243a0e9 100644 --- a/app/src/main/java/com/etesync/syncadapter/ui/setup/BaseConfigurationFinder.kt +++ b/app/src/main/java/com/etesync/syncadapter/ui/setup/BaseConfigurationFinder.kt @@ -97,7 +97,7 @@ class BaseConfigurationFinder(protected val context: Context, protected val cred val client = Client.create(httpClient, uri.toString()) val etebase = Account.login(client, credentials.userName, credentials.password) etebaseSession = etebase.save(null) - } catch (e: EtebaseException) { + } catch (e: java.lang.Exception) { Logger.log.warning(e.localizedMessage) exception = e }