Skip to content

Commit

Permalink
[Community] fix non auth private data fetch error
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDSM committed Sep 30, 2024
1 parent cff8d00 commit 467bb96
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions octobot/community/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,9 @@ async def fetch_bot_tentacles_data_based_config(

async def fetch_private_data(self, reset=False):
try:
if not self.is_logged_in():
self.logger.info(f"Can't fetch private data: no authenticated user")
return
mqtt_uuid = None
try:
mqtt_uuid = self.get_saved_mqtt_device_uuid()
Expand Down

0 comments on commit 467bb96

Please sign in to comment.