--- a/app/src/main/java/com/geekorum/ttrss/accounts/LoginViewModel.kt Sun Jul 19 21:35:01 2020 -0400
+++ b/app/src/main/java/com/geekorum/ttrss/accounts/LoginViewModel.kt Fri Jul 31 13:21:28 2020 -0400
@@ -206,6 +206,8 @@
val account = Account(username, httpUrl!!.toString())
val success = accountManager.addAccount(account, password)
if (success) {
+ val serverInformation = DataServerInformation(account.url, http_auth_username, http_auth_password)
+ accountManager.updateServerInformation(account, serverInformation)
accountManager.initializeAccountSync(account)
return@withContext account
}