diff --git a/services/https.js b/services/https.js index 368ed02..36447a3 100644 --- a/services/https.js +++ b/services/https.js @@ -13,7 +13,7 @@ const headers = { const timeout = 25000; const get = async url => { - if (!url || typeof url !== 'string') throw new Error('Missing URL, expected a string'); + if (!url || typeof url !== 'string') throw new Error('Missing URL, expected a string.'); return new Promise((resolve, reject) => { const req = https.get(url, { headers, timeout }, res => {