Fix resetting password

This commit is contained in:
Trevor Slocum 2024-04-22 14:02:59 -07:00
parent b06b91d61d
commit c0b6545346
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,6 @@
1.3.4:
- Fix resetting password
1.3.3:
- Display on-screen keyboard when input field is selected on Android

View file

@ -44,6 +44,10 @@ func (c *Client) Connect() {
}
c.connecting = true
if c.Address == "" {
c.Address = DefaultServerAddress
}
if strings.HasPrefix(c.Address, "ws://") || strings.HasPrefix(c.Address, "wss://") {
c.connectWebSocket()
return