From b0d2a031bc4b98b753b00e10b92dbed518144f56 Mon Sep 17 00:00:00 2001 From: Steven Wilkin Date: Mon, 23 Feb 2015 14:10:31 +0000 Subject: [PATCH] Use correct hostname for face recognition API --- lib/image.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/image.js b/lib/image.js index 9bd10aa..9aeaab9 100644 --- a/lib/image.js +++ b/lib/image.js @@ -194,7 +194,7 @@ var faceApis = { }, lambda: function(image, callback) { - var uri = url.parse('https://lambda-face-detection-and-recognition.p.mashape.com/detect', true) + var uri = url.parse('https://lambda-face-recognition.p.mashape.com/detect', true) uri.query = { images: image, }