You've already forked AstralRinth
forked from didirus/AstralRinth
Fix version name can be empty string (#537)
This commit is contained in:
@@ -41,7 +41,10 @@ pub struct InitialVersionData {
|
||||
regex = "crate::util::validate::RE_URL_SAFE"
|
||||
)]
|
||||
pub version_number: String,
|
||||
#[validate(length(min = 1, max = 64))]
|
||||
#[validate(
|
||||
length(min = 1, max = 64),
|
||||
custom(function = "crate::util::validate::validate_name")
|
||||
)]
|
||||
#[serde(alias = "name")]
|
||||
pub version_title: String,
|
||||
#[validate(length(max = 65536))]
|
||||
|
||||
Reference in New Issue
Block a user