From 26e60ab2d43a342296f2efad783053d6ad53b72a Mon Sep 17 00:00:00 2001 From: eson Date: Wed, 9 Dec 2020 10:49:20 +0800 Subject: [PATCH] fix(date): date == "" not != "" --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 353815a..6cef24f 100644 --- a/main.go +++ b/main.go @@ -24,7 +24,7 @@ type CountLiveAnchors struct { func getArgsStartTime() time.Time { date := flag.Arg(0) - if date != "" { + if date == "" { panic("please input date eg. '2020-11-30 16:29:17'") } start, err := time.ParseInLocation("2006-01-02 15:04:03", date, time.Local)