mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-11 22:17:14 +03:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
const getHash = require('./getHash.js');
|
|
|
|
module.exports = function getSubmissionUUID(videoID, category, userID,
|
|
startTime, endTime) {
|
|
return getHash('v2-categories' + videoID + startTime + endTime + category +
|
|
userID, 1);
|
|
};
|