We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de3ea73 + cf7754c commit ed15d32Copy full SHA for ed15d32
libs/taskNew.js
@@ -99,7 +99,7 @@ module.exports = {
99
const userUuid = req.get('set-uuid');
100
101
// Valid UUID and no other task with same UUID?
102
- if (/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(userUuid) && !TaskManager.singleton().find(userUuid)){
+ if (/^[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(userUuid) && !TaskManager.singleton().find(userUuid)){
103
req.id = userUuid;
104
next();
105
}else{
0 commit comments