mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
Various Fixes
This commit is contained in:
@@ -2,6 +2,12 @@ import Foundation
|
||||
import UIKit
|
||||
import Postbox
|
||||
|
||||
enum StickerVerificationStatus {
|
||||
case loading
|
||||
case verified
|
||||
case declined
|
||||
}
|
||||
|
||||
public class ImportStickerPack {
|
||||
public class Sticker: Equatable {
|
||||
public enum Content {
|
||||
@@ -32,6 +38,14 @@ public class ImportStickerPack {
|
||||
return data
|
||||
}
|
||||
}
|
||||
|
||||
var isAnimated: Bool {
|
||||
if case .animation = self.content {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public let software: String
|
||||
|
||||
Reference in New Issue
Block a user