mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
correct check for groupfolder entry
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
2edd171eda
commit
cfe41aced6
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public final class DrawerMenuUtil {
|
|||
}
|
||||
|
||||
public static void filterGroupfoldersMenuItem(Menu menu, @Nullable OCCapability capability) {
|
||||
if (capability != null && capability.getGroupfolders().isFalse()) {
|
||||
if (capability != null && !capability.getGroupfolders().isTrue()) {
|
||||
filterMenuItems(menu, R.id.nav_groupfolders);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue