Beispiel #1
0
 public void Handle(GroupStickersDidLoadedEventArgs e)
 {
     if (_groupSet.Full?.StickerSet?.Id == e.Id)
     {
         SyncGroup(_groupSet.Full);
     }
 }
        public void Handle(GroupStickersDidLoadedEventArgs e)
        {
            var full = CacheService.GetFullChat((int)_groupSet.Set.Id) as TLChannelFull;

            if (full != null)
            {
                SyncGroup(full);
            }
        }