This commit is contained in:
Alessio 2023-11-18 16:39:37 -08:00
parent 6fd06c8c51
commit a4c4dba5e0

View File

@ -399,7 +399,7 @@ func start_webserver(addr string) {
} }
func fetch_inbox(how_many int) { func fetch_inbox(how_many int) {
trove := scraper.GetInbox(how_many) trove, _ := scraper.GetInbox(how_many)
profile.SaveDMTrove(trove) profile.SaveDMTrove(trove)
happy_exit(fmt.Sprintf("Saved %d messages from %d chats", len(trove.Messages), len(trove.Rooms))) happy_exit(fmt.Sprintf("Saved %d messages from %d chats", len(trove.Messages), len(trove.Rooms)))
} }