From 06167eef18bcd3c3506d5e5756f47373cb30cc13 Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 6 Mar 2022 15:26:27 -0800 Subject: [PATCH] Fix over-enthusiastic commit --- persistence/user_queries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistence/user_queries.go b/persistence/user_queries.go index d522f54..c05cfd8 100644 --- a/persistence/user_queries.go +++ b/persistence/user_queries.go @@ -51,7 +51,7 @@ func (p Profile) SaveUser(u *scraper.User) error { pinned_tweet_id=?, is_content_downloaded=(is_content_downloaded or ?) `, - u.ID, u.DisplayName, u.Handle, u.Bio, u.FollowingCount, u.FollowersCount, u.Location, u.Website, u.JoinDate, u.IsPrivate, + u.ID, u.DisplayName, u.Handle, u.Bio, u.FollowingCount, u.FollowersCount, u.Location, u.Website, u.JoinDate.Unix(), u.IsPrivate, u.IsVerified, u.IsBanned, u.ProfileImageUrl, u.ProfileImageLocalPath, u.BannerImageUrl, u.BannerImageLocalPath, u.PinnedTweetID, u.IsContentDownloaded, u.IsIdFake,