2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Added reactions count to overview in statistics info.

This commit is contained in:
23rd
2023-11-17 04:10:45 +03:00
committed by John Preston
parent 173a5046e8
commit f88eee8047
3 changed files with 20 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ struct StatisticsMessageInteractionInfo final {
MsgId messageId;
int viewsCount = 0;
int forwardsCount = 0;
int reactionsCount = 0;
};
struct StatisticsMessageSenderInfo final {
@@ -115,6 +116,7 @@ struct MessageStatistics final {
int publicForwards = 0;
int privateForwards = 0;
int views = 0;
int reactions = 0;
};
struct AnyStatistics final {