🐛 修复本地存储 https 链接拼接错误 BUG

This commit is contained in:
zhaojun1998
2019-12-08 19:01:50 +08:00
parent 0c58869158
commit 682da819a8

View File

@@ -57,7 +57,7 @@ public class StringUtils {
if (path.indexOf("http://") == 0) {
sb.append("http://");
} else if (path.indexOf("https://") == 0) {
sb.append("http://");
sb.append("https://");
}
for (int i = sb.length(); i < path.length() - 1; i++) {