fix(baidu_photo): change folder name length limit (close #4351 in #4353)

Co-authored-by: Andy Hsu <i@nn.ci>
This commit is contained in:
安稳
2023-05-09 20:44:57 +08:00
committed by GitHub
parent 555cc26cbf
commit d41d868a8d
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ const (
)
var (
ErrNotSupportName = errors.New("only chinese and english, numbers and underscores are supported, and the length is no more than 20")
ErrNotSupportName = errors.New("only chinese and english, numbers and underscores are supported, and the length is no more than 50")
)
func (d *BaiduPhoto) Request(furl string, method string, callback base.ReqCallback, resp interface{}) ([]byte, error) {