mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 22:46:10 +00:00
Added initial api support of reactions limit in channels and groups.
This commit is contained in:
@@ -104,7 +104,9 @@ bool operator<(
|
||||
bool operator==(
|
||||
const AllowedReactions &a,
|
||||
const AllowedReactions &b) {
|
||||
return (a.type == b.type) && (a.some == b.some);
|
||||
return (a.type == b.type)
|
||||
&& (a.some == b.some)
|
||||
&& (a.maxCount == b.maxCount);
|
||||
}
|
||||
|
||||
AllowedReactions Parse(const MTPChatReactions &value) {
|
||||
|
Reference in New Issue
Block a user