fix: error message

This commit is contained in:
Zack Fu Zi Xiang 2024-06-24 15:31:56 +08:00
parent 8d27f41607
commit c4514a9b70
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ fn check_collab_publish_name(publish_name: &str) -> Result<(), AppError> {
// Check len
if publish_name.len() > 50 {
return Err(AppError::InvalidRequest(
"Document name must be at most 20 characters long".to_string(),
"Document name must be at most 50 characters long".to_string(),
));
}