From 99643448c16b1777d77cab20f671c748192f2b06 Mon Sep 17 00:00:00 2001 From: "Diogo Franco (Kovensky)" Date: Fri, 26 Jul 2013 12:25:13 -0300 Subject: [PATCH] anidb: Correct syntax error --- mylistcache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylistcache.go b/mylistcache.go index 54d71c9..b004731 100644 --- a/mylistcache.go +++ b/mylistcache.go @@ -247,7 +247,7 @@ func (adb *AniDB) parseMylistReply(reply udpapi.APIReply) *MyListEntry { if mla.Cached.IsZero() { // as attractive as such an ancient mtime would be, // few filesystems can represent it; just make it old enough - mla.Cached = time.Unix(0, 0), + mla.Cached = time.Unix(0, 0) } Cache.Set(mla, key...) -- 2.44.0