Update BaseCommentParam.java (#1072)

兼容微信头像长度
pull/1042/head^2
manjusaka 2020-09-18 08:27:24 +08:00 committed by GitHub
parent ed46ab7031
commit d60a940a62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public abstract class BaseCommentParam<COMMENT> implements InputConverter<COMMEN
@Size(max = 255, message = "邮箱的字符长度不能超过 {max}")
private String email;
@Size(max = 127, message = "评论者博客链接的字符长度不能超过 {max}")
@Size(max = 255, message = "评论者博客链接的字符长度不能超过 {max}")
@URL(message = "博客链接格式不正确")
private String authorUrl;