mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Fix room ping permission checked incorrectly
This commit is contained in:
parent
5d6c26c8c7
commit
bf9601018d
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ Item {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: warningRect
|
id: warningRect
|
||||||
|
|
||||||
visible: (room && room.permissions.canPingRoom && room.input.containsAtRoom)
|
visible: (room && room.permissions.canPingRoom() && room.input.containsAtRoom)
|
||||||
color: Nheko.colors.base
|
color: Nheko.colors.base
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
z: 3
|
z: 3
|
||||||
|
|
Loading…
Reference in a new issue