excellent

This commit is contained in:
Tim Bendt
2025-05-02 01:16:13 -04:00
parent fe22010a68
commit 615aeda3b9
20 changed files with 313 additions and 161 deletions

View File

@@ -6,9 +6,9 @@ def action_open(app) -> None:
def check_id(message_id: str) -> bool:
try:
int(message_id)
app.current_message_id = message_id
app.show_message(app.current_message_id)
app.show_message(message_id)
except ValueError:
app.bell()
app.show_status("Invalid message ID. Please enter an integer.", severity="error")
return True
return False