From 630936a6ecdfca1065cffe616f389e07572ef049 Mon Sep 17 00:00:00 2001 From: NekoInverter <7741672-NekoInverter@users.noreply.gitlab.com> Date: Tue, 22 Dec 2020 23:01:45 +0800 Subject: [PATCH] Fix update link --- .../java/org/meowcat/edxposed/manager/util/json/JSONUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/meowcat/edxposed/manager/util/json/JSONUtils.java b/app/src/main/java/org/meowcat/edxposed/manager/util/json/JSONUtils.java index 18ce3f07..54be3d22 100644 --- a/app/src/main/java/org/meowcat/edxposed/manager/util/json/JSONUtils.java +++ b/app/src/main/java/org/meowcat/edxposed/manager/util/json/JSONUtils.java @@ -9,7 +9,7 @@ import java.util.List; public class JSONUtils { - public static final String JSON_LINK = "http://edxp.meowcat.org/assets/version.json"; + public static final String JSON_LINK = "https://edxp.meowcat.org/assets/version.json"; public static String getFileContent(String url) throws IOException { HttpURLConnection c = (HttpURLConnection) new URL(url).openConnection();