修复url长度校验

pull/930/merge
lyswhut 2022-01-07 23:01:50 +08:00
parent 1df05a5529
commit 9641ea0b3a
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ export default () => {
{ key: 'types', types: ['object'], required: true },
{ key: 'copyrightId', types: ['string', 'number'], required: true, max: 64 },
{ key: 'lrcUrl', types: ['string'], max: 64 },
{ key: 'lrcUrl', types: ['string'], max: 1024 },
], musicInfo)
break
default: throw new Error('Unknown action: ' + action)