diff --git a/src/components/CommunityComponents/CommunityHamburger.vue b/src/components/CommunityComponents/CommunityHamburger.vue
index c53a4d751caf362fd37a4cad34038edd1d4562cb..83caf2163016c723bd4d686b017a8a313351bacc 100644
--- a/src/components/CommunityComponents/CommunityHamburger.vue
+++ b/src/components/CommunityComponents/CommunityHamburger.vue
@@ -60,7 +60,9 @@ export default {
     },
   },
   mounted() {
-    this.admin = CommunityAdminService.isUserAdmin();
+    this.admin = CommunityAdminService.isUserAdmin(
+      this.$route.params.communityID
+    );
   },
 };
 </script>