mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
18 lines
285 B
Objective-C
18 lines
285 B
Objective-C
#import "TGBridgeStateSubscription.h"
|
|
|
|
NSString *const TGBridgeStateSubscriptionName = @"state.syncState";
|
|
|
|
@implementation TGBridgeStateSubscription
|
|
|
|
- (bool)dropPreviouslyQueued
|
|
{
|
|
return true;
|
|
}
|
|
|
|
+ (NSString *)subscriptionName
|
|
{
|
|
return TGBridgeStateSubscriptionName;
|
|
}
|
|
|
|
@end
|