diff --git a/50_bubble.py b/50_bubble.py index eeddc4a..c0c4b78 100644 --- a/50_bubble.py +++ b/50_bubble.py @@ -172,8 +172,7 @@ Bubble is open source:  def is_antenna_enabled(self): if self.user: - if self.user.role == User.LIMITED: - return False + return self.user.role != User.LIMITED return False  def get_token(self):