Swiftgram/submodules/PlatformRestrictionMatching/Sources/PlatformRestrictionMatching.swift
2019-08-14 23:25:37 +03:00

9 lines
183 B
Swift

import Foundation
import TelegramCore
public extension RestrictedContentMessageAttribute {
func matchesPlatform() -> Bool {
return self.platformSelector == "ios"
}
}