mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-15 07:57:05 +03:00
Better chapter name error and increase min size
This commit is contained in:
@@ -227,11 +227,14 @@ async function checkInvalidFields(videoID: VideoID, userID: UserID, hashedUserID
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof segmentPair.description !== "string"
|
if (typeof segmentPair.description !== "string"
|
||||||
|| (segmentPair.actionType === ActionType.Chapter && segmentPair.description.length > 60 )
|
|
||||||
|| (segmentPair.description.length !== 0 && segmentPair.actionType !== ActionType.Chapter)) {
|
|| (segmentPair.description.length !== 0 && segmentPair.actionType !== ActionType.Chapter)) {
|
||||||
invalidFields.push("segment description");
|
invalidFields.push("segment description");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (segmentPair.actionType === ActionType.Chapter && segmentPair.description.length > 200) {
|
||||||
|
invalidFields.push("chapter name (too long)");
|
||||||
|
}
|
||||||
|
|
||||||
const permission = await canSubmit(hashedUserID, segmentPair.category);
|
const permission = await canSubmit(hashedUserID, segmentPair.category);
|
||||||
if (!permission.canSubmit) {
|
if (!permission.canSubmit) {
|
||||||
Logger.warn(`Rejecting submission due to lack of permissions for category ${segmentPair.category}: ${segmentPair.segment} ${hashedUserID} ${videoID} ${videoDurationParam} ${userAgent}`);
|
Logger.warn(`Rejecting submission due to lack of permissions for category ${segmentPair.category}: ${segmentPair.segment} ${hashedUserID} ${videoID} ${videoDurationParam} ${userAgent}`);
|
||||||
|
|||||||
Reference in New Issue
Block a user