From a4c4dba5e05edf283f10b46d14d4b15283e0910e Mon Sep 17 00:00:00 2001 From: Alessio Date: Sat, 18 Nov 2023 16:39:37 -0800 Subject: [PATCH] Fix typo --- cmd/twitter/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/twitter/main.go b/cmd/twitter/main.go index bdfd3d3..b3619ce 100644 --- a/cmd/twitter/main.go +++ b/cmd/twitter/main.go @@ -399,7 +399,7 @@ func start_webserver(addr string) { } func fetch_inbox(how_many int) { - trove := scraper.GetInbox(how_many) + trove, _ := scraper.GetInbox(how_many) profile.SaveDMTrove(trove) happy_exit(fmt.Sprintf("Saved %d messages from %d chats", len(trove.Messages), len(trove.Rooms))) }