fix invalid conditional which would block task scheduling
This commit is contained in:
@@ -733,7 +733,7 @@ module.exports.create = function (cfg) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// write tasks
|
// write tasks
|
||||||
if(tasks && metadata.expire && metadata.expire === 'number') {
|
if(tasks && metadata.expire && typeof(metadata.expire) === 'number') {
|
||||||
// the fun part...
|
// the fun part...
|
||||||
// the user has said they want this pad to expire at some point
|
// the user has said they want this pad to expire at some point
|
||||||
tasks.write(metadata.expire, "EXPIRE", [ channelName ], function (err) {
|
tasks.write(metadata.expire, "EXPIRE", [ channelName ], function (err) {
|
||||||
|
|||||||
Reference in New Issue
Block a user