diff options
Diffstat (limited to 'Hotline/Models')
| -rw-r--r-- | Hotline/Models/Hotline.swift | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Hotline/Models/Hotline.swift b/Hotline/Models/Hotline.swift index 70073c2..c57434a 100644 --- a/Hotline/Models/Hotline.swift +++ b/Hotline/Models/Hotline.swift @@ -667,6 +667,10 @@ class Hotline: Equatable, HotlineClientDelegate, HotlineFileClientDelegate { } @MainActor func downloadBanner(force: Bool = false) { + guard self.serverVersion >= 150 else { + return + } + if self.bannerClient != nil || force { self.bannerClient?.delegate = nil self.bannerClient?.cancel() |