From c86fb6205cb9da286ef4e3a5508b9eb770c913de Mon Sep 17 00:00:00 2001 From: Atsushi Yamamoto Date: Sat, 20 Feb 2016 14:13:56 -0800 Subject: [PATCH] Add res.send() at the end of authorize_user() --- lib/instagram.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/instagram.js b/lib/instagram.js index 77cdba1..9b08f36 100644 --- a/lib/instagram.js +++ b/lib/instagram.js @@ -1478,6 +1478,8 @@ var instagram = function(spec, my) { return handle_error(result, cb, retry); } }, retry); + + res.end('Authorization succeeded'); }; /**