Don't allow changing highlight category

This commit is contained in:
Ajay
2022-02-11 12:05:04 -05:00
parent 6db9404e1c
commit fb6e98f93f

View File

@@ -210,7 +210,7 @@ async function categoryVote(UUID: SegmentUUID, userID: UserID, isVIP: boolean, i
if (!config.categoryList.includes(category)) { if (!config.categoryList.includes(category)) {
return { status: 400, message: "Category doesn't exist." }; return { status: 400, message: "Category doesn't exist." };
} }
if (videoInfo.actionType === ActionType.Poi) { if (videoInfo.actionType === ActionType.Poi || category === "poi_highlight") {
return { status: 400, message: "Not allowed to change category for single point segments" }; return { status: 400, message: "Not allowed to change category for single point segments" };
} }