fix: Unban

This commit is contained in:
Christian Pauly
2020-11-22 21:12:46 +01:00
parent b4fb28380f
commit f056e65d50
3 changed files with 7 additions and 7 deletions

View File

@ -177,13 +177,13 @@ class UserBottomSheet extends StatelessWidget {
),
value: 'ban'),
);
} else if (user.room.canBan &&
user.powerLevel < user.room.ownPowerLevel &&
user.membership == Membership.ban) {
} else if (user.canBan && user.membership == Membership.ban) {
items.add(
PopupMenuItem(
child: _TextWithIcon(
L10n.of(context).removeExile, Icons.warning_outlined),
L10n.of(context).removeExile,
Icons.warning_outlined,
),
value: 'unban'),
);
}