From 81b341dda0905d52d628c1c6185ff53d6fe6a433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Thu, 2 Nov 2023 22:24:32 +0200 Subject: [PATCH 1/1] Fixed missing Antenna actions --- 50_bubble.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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): -- 2.34.1