limit address length to 1024

This commit is contained in:
yggverse 2024-04-09 13:52:04 +03:00
parent ae13151936
commit 31a3aaf216

View file

@ -16,5 +16,9 @@ class Address
$this->entry->set_text( $this->entry->set_text(
$value $value
); );
$this->entry->set_max_length(
1024
);
} }
} }