From 5191b136c2ec7a13c0b0ef2acddbf30ef3674c25 Mon Sep 17 00:00:00 2001 From: Aaron Boodman Date: Wed, 12 Oct 2016 08:58:20 -0700 Subject: [PATCH] fb/slurp: fix eslint error (#2697) --- samples/js/fb/slurp/src/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/js/fb/slurp/src/main.js b/samples/js/fb/slurp/src/main.js index 2a8a1e6316..1d784b0eca 100644 --- a/samples/js/fb/slurp/src/main.js +++ b/samples/js/fb/slurp/src/main.js @@ -148,7 +148,8 @@ async function getPhotos(): Promise> { // Note: Even though the documentation says that the max value for 'limit' is 1000, aa@ observed // errors from fb servers past about 500. let result = await new List(); - let url = `${graphAPIHost}v2.8/me/photos/uploaded?limit=500&date_format=U&fields=${query.join(',')}`; + let url = `${graphAPIHost}v2.8/me/photos/uploaded?limit=500&date_format=U&fields=` + + `${query.join(',')}`; while (url) { const photosJSON = await callFacebook(url); result = await result.append(await jsonToNoms(photosJSON));