Skip to content

Commit

Permalink
Fix: Fix missing username when editing WebDAV server
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghai committed Feb 27, 2024
1 parent fe54fc8 commit feda428
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ class EditWebDavServerFragment : Fragment() {
when (val authentication = server.authentication) {
is PasswordAuthentication -> {
authenticationType = AuthenticationType.PASSWORD
binding.usernameEdit.setText(authority.username)
binding.passwordEdit.setText(authentication.password)
}
is AccessTokenAuthentication -> {
Expand Down

0 comments on commit feda428

Please sign in to comment.