diff options
author | 2021-05-29 19:45:07 +0200 | |
---|---|---|
committer | 2021-05-29 19:45:07 +0200 | |
commit | 5facbed9c04d1b2e11bf5b842a6acda3a9ed54c0 (patch) | |
tree | 40ae75c3613c9c6915273f98fe7ce41046d11381 /internal/typeutils/internal.go | |
parent | first implementation of search feature (diff) | |
parent | Search (#36) (diff) | |
download | gotosocial-5facbed9c04d1b2e11bf5b842a6acda3a9ed54c0.tar.xz |
Merge branch 'main' of github.com:superseriousbusiness/gotosocial into main
Diffstat (limited to 'internal/typeutils/internal.go')
-rw-r--r-- | internal/typeutils/internal.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/typeutils/internal.go b/internal/typeutils/internal.go index 3110b382c..626509b34 100644 --- a/internal/typeutils/internal.go +++ b/internal/typeutils/internal.go @@ -40,10 +40,10 @@ func (c *converter) StatusToBoost(s *gtsmodel.Status, boostingAccount *gtsmodel. URL: boostWrapperStatusURL, // the boosted status is not created now, but the boost certainly is - CreatedAt: time.Now(), - UpdatedAt: time.Now(), - Local: local, - AccountID: boostingAccount.ID, + CreatedAt: time.Now(), + UpdatedAt: time.Now(), + Local: local, + AccountID: boostingAccount.ID, // replies can be boosted, but boosts are never replies InReplyToID: "", |