Fix workspace bucket fallback + typing error logging

This commit is contained in:
daniel
2026-05-07 09:35:09 -05:00
parent 116d79ead5
commit 0951d2be31
2 changed files with 4 additions and 3 deletions

View File

@@ -55,8 +55,9 @@ class TelegramAdapter:
'chat_id': self.chat_id,
'action': 'typing',
})
except Exception:
pass
except Exception as e:
import traceback
print(f'[telegram] send_typing failed: {e}\n{traceback.format_exc()}')
def edit(self, message_id: str, text: str) -> None:
"""Edit an existing message in-place."""