Skip to content

Commit e134d64

Browse files
committed
fixed comparison operators. updated err messages
1 parent 3b317ca commit e134d64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

InsertAIConcept.zip

2.25 KB
Binary file not shown.

InsertAIConcept/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function(context, req) {
3636
QueryCollection(req.body.source.pageid)
3737
.then(function(results) {
3838
// If there is not an entry already
39-
if (results && results.length == 0) {
39+
if (results instanceof Object && results.length === 0) {
4040
context.log.info(
4141
"[InsertAIConcept] inserting " + req.body.source.pageid
4242
);
@@ -56,7 +56,7 @@ module.exports = function(context, req) {
5656
context.log.error(err);
5757
});
5858
} else {
59-
context.log("[InsertAIConcept] missing body");
59+
context.log("[InsertAIConcept] data missing");
6060
context.done();
6161
}
6262
};

0 commit comments

Comments
 (0)