Skip to content

Commit

Permalink
Use HTTPS for aTD service
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed May 31, 2016
1 parent 3c46773 commit 2da64a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/api.js
Expand Up @@ -20,11 +20,11 @@ var request = require('request');
*/
function Api(ignored) {
this.uris = {
'en': 'http://service.afterthedeadline.com',
'fr': 'http://fr.service.afterthedeadline.com',
'de': 'http://de.service.afterthedeadline.com',
'pt': 'http://pt.service.afterthedeadline.com',
'es': 'http://es.service.afterthedeadline.com'
'en': 'https://en.service.afterthedeadline.com',
'fr': 'https://fr.service.afterthedeadline.com',
'de': 'https://de.service.afterthedeadline.com',
'pt': 'https://pt.service.afterthedeadline.com',
'es': 'https://es.service.afterthedeadline.com'
};

this.parser = new xml2js.Parser;
Expand Down

0 comments on commit 2da64a8

Please sign in to comment.