From ad0334e734787b9a4e1a9e860ab7923004168c48 Mon Sep 17 00:00:00 2001 From: Zach H Date: Thu, 14 Jan 2016 17:32:25 -0500 Subject: [PATCH] mtgjson now secure --- oracle/src/oraclewizard.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oracle/src/oraclewizard.cpp b/oracle/src/oraclewizard.cpp index 4a994034..7b872189 100644 --- a/oracle/src/oraclewizard.cpp +++ b/oracle/src/oraclewizard.cpp @@ -30,13 +30,13 @@ #include "settingscache.h" #define ZIP_SIGNATURE "PK" -#define ALLSETS_URL_FALLBACK "http://mtgjson.com/json/AllSets.json" +#define ALLSETS_URL_FALLBACK "https://mtgjson.com/json/AllSets.json" #ifdef HAS_ZLIB #include "zip/unzip.h" - #define ALLSETS_URL "http://mtgjson.com/json/AllSets.json.zip" + #define ALLSETS_URL "https://mtgjson.com/json/AllSets.json.zip" #else - #define ALLSETS_URL "http://mtgjson.com/json/AllSets.json" + #define ALLSETS_URL "https://mtgjson.com/json/AllSets.json" #endif #define TOKENS_URL "https://raw.githubusercontent.com/Cockatrice/Magic-Token/master/tokens.xml"