diff options
| author | Dustin Mierau <dustin@mierau.me> | 2025-10-27 12:52:15 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2025-10-27 12:52:15 -0700 |
| commit | 924012e6ee03fff5570e9362e29be9b04816b777 (patch) | |
| tree | e9e10d245c9923465d1882387351c9ca55eae1b8 /Hotline | |
| parent | 9d23439c2ad70cb2f0a70cd3af9a07f99f764ca1 (diff) | |
Fix default bookmark address for Mobius Strip.
Diffstat (limited to 'Hotline')
| -rw-r--r-- | Hotline/Models/Bookmark.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Hotline/Models/Bookmark.swift b/Hotline/Models/Bookmark.swift index 6063f48..69217f3 100644 --- a/Hotline/Models/Bookmark.swift +++ b/Hotline/Models/Bookmark.swift @@ -75,7 +75,7 @@ final class Bookmark { } static let DefaultBookmarks: [Bookmark] = [ - Bookmark(type: .server, name: "The Mobius Strip", address: "24.6.82.54", port: HotlinePorts.DefaultServerPort), + Bookmark(type: .server, name: "The Mobius Strip", address: "mobius.trtphotl.com", port: HotlinePorts.DefaultServerPort), Bookmark(type: .server, name: "System 7 Today", address: "hotline.system7today.com", port: HotlinePorts.DefaultServerPort), Bookmark(type: .tracker, name: "Featured Servers", address: "hltracker.com", port: HotlinePorts.DefaultTrackerPort) ] |