mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix(backend): remove accidental decode
This commit is contained in:
@@ -254,7 +254,7 @@ class NotificationManager(AppService):
|
||||
# Process regular notifications
|
||||
message = pubsub.get_message(ignore_subscribe_messages=True)
|
||||
if message and message["type"] == "message":
|
||||
batch_key = message["data"].decode()
|
||||
batch_key = message["data"]
|
||||
self.run_and_wait(self._process_batch(batch_key))
|
||||
|
||||
# Check summaries every minute
|
||||
|
||||
Reference in New Issue
Block a user