frankvHoof93 / TikTokLiveSharp

Port of TikTok live library for C#
https://vanhoof.dev
Other
156 stars 31 forks source link

Accumulated likes #63

Closed elizandrooliveira closed 10 months ago

elizandrooliveira commented 10 months ago

By pressing "TAP TAP" several times, the like bar fills up, but when it explodes, it only counts 01 like. Is there a way to get the total number of likes, equal to the number sent in the likes bar?

Like imagem(83 likes), but in console count one...

private static void Client_OnLike(TikTokLiveClient sender, Like e) {

        Console.WriteLine($"{e.Sender.UniqueId} liked!"); // 01 but I sent 83 likes

    }
HugoB07 commented 10 months ago

hello, e.Count (15 max per call) or e.Total (total like of the stream)

elizandrooliveira commented 10 months ago

Ok @HugoB07, thx.... ^^