From a96b8f166789ea2a8d81e651798d32247a7d7df1 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 1 Jul 2018 02:13:22 +0000 Subject: [PATCH] http -> https --- commands/games/akinator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/games/akinator.js b/commands/games/akinator.js index 12b0ed6c..645a8bfc 100644 --- a/commands/games/akinator.js +++ b/commands/games/akinator.js @@ -65,7 +65,7 @@ module.exports = class AkinatorCommand extends Command { async createSession(channel) { const { body } = await request - .get('http://srv2.akinator.com:9157/ws/new_session') + .get('https://srv2.akinator.com:9157/ws/new_session') .query({ partner: 1, player: 'website-desktop', @@ -88,7 +88,7 @@ module.exports = class AkinatorCommand extends Command { async progress(channel, answer) { const session = this.sessions.get(channel.id); const { body } = await request - .get('http://srv2.akinator.com:9157/ws/answer') + .get('https://srv2.akinator.com:9157/ws/answer') .query({ session: session.id, signature: session.signature, @@ -111,7 +111,7 @@ module.exports = class AkinatorCommand extends Command { async guess(channel) { const session = this.sessions.get(channel.id); const { body } = await request - .get('http://srv2.akinator.com:9157/ws/list') + .get('https://srv2.akinator.com:9157/ws/list') .query({ session: session.id, signature: session.signature,