aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS/ServerView.swift
diff options
context:
space:
mode:
authorDustin Mierau <dustin@mierau.me>2023-12-22 18:18:23 -0800
committerDustin Mierau <dustin@mierau.me>2023-12-22 18:18:23 -0800
commitb9443172e78669b78d3bd3fa4f20e1b202d9c741 (patch)
tree0bfe7a307e569e57296d3666385667329a6d5d8a /Hotline/macOS/ServerView.swift
parentecf1f38892d3cac2eb8e7c04d8afb80664b80a54 (diff)
Fix issue where some servers mark transactions with isReply field but not as a reply transaction type.
Diffstat (limited to 'Hotline/macOS/ServerView.swift')
-rw-r--r--Hotline/macOS/ServerView.swift3
1 files changed, 2 insertions, 1 deletions
diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift
index da5716f..7476b3c 100644
--- a/Hotline/macOS/ServerView.swift
+++ b/Hotline/macOS/ServerView.swift
@@ -252,13 +252,14 @@ struct ServerView: View {
}
.navigationTitle("")
.onAppear {
+ print(" YAYY")
self.model.login(server: self.server, login: "", password: "", username: "bolt", iconID: 128) { success in
if !success {
print("FAILED LOGIN??")
}
else {
- self.model.sendUserInfo(username: "bolt", iconID: 128)
print("GETTING USER LIST????!")
+ self.model.sendUserInfo(username: "bolt", iconID: 128)
self.model.getUserList()
}
}