fix passwordless users
This commit is contained in:
parent
295cb32419
commit
a3e39c89f2
|
@ -15,8 +15,8 @@
|
||||||
"repositoryURL": "https://github.com/Flight-School/AnyCodable",
|
"repositoryURL": "https://github.com/Flight-School/AnyCodable",
|
||||||
"state": {
|
"state": {
|
||||||
"branch": null,
|
"branch": null,
|
||||||
"revision": "69261f239f0fffaf51495dadc4f8483fbfe97025",
|
"revision": "876d162385e9862ae8b3c8d65dc301312b040005",
|
||||||
"version": "0.6.1"
|
"version": "0.6.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
||||||
"repositoryURL": "https://github.com/pointfreeco/combine-schedulers",
|
"repositoryURL": "https://github.com/pointfreeco/combine-schedulers",
|
||||||
"state": {
|
"state": {
|
||||||
"branch": null,
|
"branch": null,
|
||||||
"revision": "c37e5ae8012fb654af776cc556ff8ae64398c841",
|
"revision": "6dcc7c034d28fe7ac652453faeae07656f723909",
|
||||||
"version": "0.5.0"
|
"version": "0.5.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
"repositoryURL": "https://github.com/jellyfin/jellyfin-sdk-swift",
|
"repositoryURL": "https://github.com/jellyfin/jellyfin-sdk-swift",
|
||||||
"state": {
|
"state": {
|
||||||
"branch": "main",
|
"branch": "main",
|
||||||
"revision": "72e4111470273dff856d0c24ebb0fb30a251b1be",
|
"revision": "5cdc2419f547b3f31dc96f5eccaf3f303f44184b",
|
||||||
"version": null
|
"version": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -78,8 +78,8 @@
|
||||||
"repositoryURL": "https://github.com/kean/Nuke.git",
|
"repositoryURL": "https://github.com/kean/Nuke.git",
|
||||||
"state": {
|
"state": {
|
||||||
"branch": null,
|
"branch": null,
|
||||||
"revision": "83e1edaa5a30c567eb129c21c6d00f2f552d2c6f",
|
"revision": "69ae6d5b8c4b898450432f94bd35f863d3830cfc",
|
||||||
"version": "10.3.1"
|
"version": "10.3.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -65,9 +65,11 @@ struct ConnectToServerView: View {
|
||||||
viewModel.hidePublicUsers()
|
viewModel.hidePublicUsers()
|
||||||
if !(publicUser.hasPassword ?? true) {
|
if !(publicUser.hasPassword ?? true) {
|
||||||
password = ""
|
password = ""
|
||||||
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
|
||||||
viewModel.login()
|
viewModel.login()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}) {
|
}) {
|
||||||
HStack {
|
HStack {
|
||||||
Text(publicUser.name ?? "").font(.subheadline).fontWeight(.semibold)
|
Text(publicUser.name ?? "").font(.subheadline).fontWeight(.semibold)
|
||||||
|
|
Loading…
Reference in New Issue