mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2026-06-10 23:47:29 +00:00
fix: narrow catch exception type in LzTool.java
Replace 2 instances of `catch (Exception ignored)` with `catch (MalformedURLException ignored)` around `new java.net.URL(url)` calls, since that constructor only throws MalformedURLException.
This commit is contained in:
@@ -14,6 +14,7 @@ import io.vertx.ext.web.client.WebClientSession;
|
|||||||
import org.openjdk.nashorn.api.scripting.ScriptObjectMirror;
|
import org.openjdk.nashorn.api.scripting.ScriptObjectMirror;
|
||||||
|
|
||||||
import javax.script.ScriptException;
|
import javax.script.ScriptException;
|
||||||
|
import java.net.MalformedURLException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@@ -175,7 +176,7 @@ public class LzTool extends PanBase {
|
|||||||
if (firstDot >= 0) {
|
if (firstDot >= 0) {
|
||||||
domain = host.substring(firstDot); // e.g. ".lanzoum.com"
|
domain = host.substring(firstDot); // e.g. ".lanzoum.com"
|
||||||
}
|
}
|
||||||
} catch (Exception ignored) {}
|
} catch (MalformedURLException ignored) {}
|
||||||
// 创建一个 Cookie 并放入 CookieStore
|
// 创建一个 Cookie 并放入 CookieStore
|
||||||
DefaultCookie nettyCookie = new DefaultCookie("acw_sc__v2", acw_sc__v2);
|
DefaultCookie nettyCookie = new DefaultCookie("acw_sc__v2", acw_sc__v2);
|
||||||
nettyCookie.setDomain(domain);
|
nettyCookie.setDomain(domain);
|
||||||
@@ -275,7 +276,7 @@ public class LzTool extends PanBase {
|
|||||||
String h = du.getHost();
|
String h = du.getHost();
|
||||||
int dot = h.indexOf('.');
|
int dot = h.indexOf('.');
|
||||||
if (dot >= 0) downDomain = h.substring(dot);
|
if (dot >= 0) downDomain = h.substring(dot);
|
||||||
} catch (Exception ignored) {}
|
} catch (MalformedURLException ignored) {}
|
||||||
// 创建一个 Cookie 并放入 CookieStore
|
// 创建一个 Cookie 并放入 CookieStore
|
||||||
DefaultCookie nettyCookie = new DefaultCookie("acw_sc__v2", acw_sc__v2);
|
DefaultCookie nettyCookie = new DefaultCookie("acw_sc__v2", acw_sc__v2);
|
||||||
nettyCookie.setDomain(downDomain);
|
nettyCookie.setDomain(downDomain);
|
||||||
|
|||||||
Reference in New Issue
Block a user