Compare commits

...

1 commit

Author SHA1 Message Date
Toes | Robin Ury
c64f42ad7d
Change: empty check to reject all whitespace kinds 2026-08-20 08:58:25 -04:00

View file

@ -894,7 +894,8 @@ func _send() -> void:
if _send_pending:
return
var body := _entry.text
if body.strip_edges().is_empty():
var not_empty: = RegEx.create_from_string("\\w")
if not_empty.search(body) == null:
close_chat()
return
_send_pending = true