Skip to content

Commit

Permalink
Merge pull request #3941 from nextcloud/issue-3937-bug-fix
Browse files Browse the repository at this point in the history
Fixed Database module initialization error
  • Loading branch information
mahibi authored Jun 3, 2024
2 parents baaf45e + 2db6ce7 commit 15a0a4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ class ConversationInfoActivity :
conversationToken = intent.getStringExtra(BundleKeys.KEY_ROOM_TOKEN)!!
hasAvatarSpacing = intent.getBooleanExtra(BundleKeys.KEY_ROOM_ONE_TO_ONE, false)
credentials = ApiUtils.getCredentials(conversationUser.username, conversationUser.token)!!
initObservers()
}

override fun onStart() {
Expand Down Expand Up @@ -191,6 +190,7 @@ class ConversationInfoActivity :
binding.addParticipantsAction.visibility = GONE

binding.progressBar.let { viewThemeUtils.platform.colorCircularProgressBar(it, ColorRole.PRIMARY) }
initObservers()
}

private fun initObservers() {
Expand Down

0 comments on commit 15a0a4a

Please sign in to comment.