Use https for twitchemotes.com api

This commit is contained in:
Jiiks 2016-02-10 04:04:44 +02:00
parent 14061f2c1e
commit b18a22e83d
1 changed files with 6 additions and 6 deletions

View File

@ -349,30 +349,30 @@ BetterDiscord.prototype.ipcAsyncMessage = function(event, arg) {
'load-emoteData-twitchGlobal': { 'load-emoteData-twitchGlobal': {
'type': 'emotedata', 'type': 'emotedata',
'resource': 'Twitch Global Emotedata', 'resource': 'Twitch Global Emotedata',
'domain': 'http://twitchemotes.com', 'domain': 'https://twitchemotes.com',
'url': 'http://twitchemotes.com/api_cache/v2/global.json', 'url': '/api_cache/v2/global.json',
'localurl': null, 'localurl': null,
'message': 'load-emoteData-twitchSub', 'message': 'load-emoteData-twitchSub',
'cacheable': true, 'cacheable': true,
'variable': 'emotesTwitch', 'variable': 'emotesTwitch',
'localpath': _dataPath + "/emotes_twitch_global.json", 'localpath': _dataPath + "/emotes_twitch_global.json",
'encoding': "utf8", 'encoding': "utf8",
'https': false, 'https': true,
'parse': true, 'parse': true,
'specialparser': 0 'specialparser': 0
}, },
'load-emoteData-twitchSub': { 'load-emoteData-twitchSub': {
'type': 'emotedata', 'type': 'emotedata',
'resource': 'Twitch Subscriber Emotedata', 'resource': 'Twitch Subscriber Emotedata',
'domain': 'http://twitchemotes.com', 'domain': 'https://twitchemotes.com',
'url': 'http://twitchemotes.com/api_cache/v2/subscriber.json', 'url': '/api_cache/v2/subscriber.json',
'localurl': null, 'localurl': null,
'message': 'load-emoteData-ffz', 'message': 'load-emoteData-ffz',
'cacheable': true, 'cacheable': true,
'variable': 'subEmotesTwitch', 'variable': 'subEmotesTwitch',
'localpath': _dataPath + "/emotes_twitch_subscriber.json", 'localpath': _dataPath + "/emotes_twitch_subscriber.json",
'encoding': "utf8", 'encoding': "utf8",
'https': false, 'https': true,
'parse': true, 'parse': true,
'specialparser': 1 'specialparser': 1
}, },