优化提示信息

This commit is contained in:
nilaoda 2022-09-25 12:35:42 +08:00
parent e5dc06c64b
commit 24ea28a44b
2 changed files with 4 additions and 6 deletions

View File

@ -246,9 +246,9 @@ namespace N_m3u8DL_RE.Common.Resource
), ),
["cmd_customProxy"] = new TextContainer ["cmd_customProxy"] = new TextContainer
( (
zhCN: "设置请求代理", zhCN: "设置请求代理, 如 http://127.0.0.1:8888",
zhTW: "設置請求代理", zhTW: "設置請求代理, 如 http://127.0.0.1:8888",
enUS: "Set web request proxy" enUS: "Set web request proxy, like http://127.0.0.1:8888"
), ),
["cmd_useSystemProxy"] = new TextContainer ["cmd_useSystemProxy"] = new TextContainer
( (

View File

@ -92,13 +92,11 @@ namespace N_m3u8DL_RE.CommandLine
{ {
if (string.IsNullOrEmpty(input)) if (string.IsNullOrEmpty(input))
return null; return null;
if (!input.StartsWith("http"))
throw new ArgumentException("url must starts with http");
return new WebProxy(new Uri(input)); return new WebProxy(new Uri(input));
} }
catch (Exception ex) catch (Exception ex)
{ {
result.ErrorMessage = $"error in parse {input}: " + ex.Message; result.ErrorMessage = $"error in parse proxy: " + ex.Message;
return null; return null;
} }
} }