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