Fix couple of comments layout bugs.

This commit is contained in:
John Preston
2025-11-18 20:11:22 +04:00
parent 0babef5a09
commit 04c9d92b4a
5 changed files with 22 additions and 4 deletions

View File

@@ -147,6 +147,10 @@ GroupCallOrigin GroupCall::origin() const {
: GroupCallOrigin::Group;
}
bool GroupCall::creator() const {
return _creator;
}
bool GroupCall::canManage() const {
return _conference ? _creator : _peer->canManageGroupCall();
}

View File

@@ -84,6 +84,7 @@ public:
[[nodiscard]] rpl::producer<bool> loadedValue() const;
[[nodiscard]] bool rtmp() const;
[[nodiscard]] GroupCallOrigin origin() const;
[[nodiscard]] bool creator() const;
[[nodiscard]] bool canManage() const;
[[nodiscard]] bool listenersHidden() const;
[[nodiscard]] bool blockchainMayBeEmpty() const;