add: increase note character limit (16384 (*16)-> 262144)
This commit is contained in:
parent
c1568ad866
commit
57a69eea50
2 changed files with 3 additions and 3 deletions
|
@ -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()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue