diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-01-02 19:14:45 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-01-02 19:15:43 -0800 |
| commit | 7d670c5b63db44e32d33b7db3495b4d792866f86 (patch) | |
| tree | 0daff89e0cdac7e6becbc01f00d268e66f2849b6 /Hotline/Models/Tracker.swift | |
| parent | 78a93e5f5ed74010a130367d27221b2a11fb6542 (diff) | |
Fix banners not loading. First crack at adding a classic icon set with icons painsakenly pulled from the original Hotline client. May try to "remaster" these somehow.
Diffstat (limited to 'Hotline/Models/Tracker.swift')
| -rw-r--r-- | Hotline/Models/Tracker.swift | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Hotline/Models/Tracker.swift b/Hotline/Models/Tracker.swift index f2111a0..e9961e9 100644 --- a/Hotline/Models/Tracker.swift +++ b/Hotline/Models/Tracker.swift @@ -1,12 +1,10 @@ import SwiftUI @Observable final class Tracker { - static let defaultPort: Int = 5498 - let address: String let port: Int - init(address: String, port: Int = defaultPort) { + init(address: String, port: Int = HotlinePorts.DefaultTrackerPort) { self.address = address self.port = port } |