Fixed a small bug where -h would be interpreted as a url

这个提交包含在:
Beepboop Belong the 3rd 2020-04-13 19:47:10 +02:00
父节点 00071051d3
当前提交 9191b2af24
签署人:: beepboopbelong
GPG 密钥 ID: B873A12869A7BD29

查看文件

@ -30,6 +30,13 @@ void main(string[] args)
if(args.length == 2)
{
// -h arg
if(args[1] == "-h")
{
printHelp();
return;
}
// Direct link was supplied
string url = args[1];