add: increase note character limit (16384 (*16)-> 262144)

This commit is contained in:
trisua 2025-06-19 15:52:46 -04:00
parent c1568ad866
commit 57a69eea50
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ impl DataManager {
if data.content.len() < 2 {
return Err(Error::DataTooShort("content".to_string()));
} else if data.content.len() > 16384 {
} else if data.content.len() > 262144 {
return Err(Error::DataTooLong("content".to_string()));
}