From b9443172e78669b78d3bd3fa4f20e1b202d9c741 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Fri, 22 Dec 2023 18:18:23 -0800 Subject: Fix issue where some servers mark transactions with isReply field but not as a reply transaction type. --- Hotline/macOS/ServerView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Hotline/macOS/ServerView.swift') 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() } } -- cgit