diff options
author | 2021-07-09 18:32:48 +0200 | |
---|---|---|
committer | 2021-07-09 18:32:48 +0200 | |
commit | c7da64922f8b41daaee1cb8fc2961f7fa1336737 (patch) | |
tree | b1f9c946bd223267f87f2a77a7455974d8d5e5e9 /internal/processing/status/fave.go | |
parent | Docs (#94) (diff) | |
download | gotosocial-c7da64922f8b41daaee1cb8fc2961f7fa1336737.tar.xz |
favourites GET implementation (#95)
Diffstat (limited to 'internal/processing/status/fave.go')
-rw-r--r-- | internal/processing/status/fave.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/status/fave.go b/internal/processing/status/fave.go index 23f0d2944..0dfee6233 100644 --- a/internal/processing/status/fave.go +++ b/internal/processing/status/fave.go @@ -60,7 +60,7 @@ func (p *processor) Fave(account *gtsmodel.Account, targetStatusID string) (*api } if newFave { - thisFaveID, err := id.NewRandomULID() + thisFaveID, err := id.NewULID() if err != nil { return nil, gtserror.NewErrorInternalError(err) } |