diff options
author | 2024-12-31 09:44:07 +0000 | |
---|---|---|
committer | 2024-12-31 10:44:07 +0100 | |
commit | 29da5b35a5653ae1667400d1aeee93a360c9d7ee (patch) | |
tree | b234b9291c777d600859882465ec075d4a525ab9 /internal/cache | |
parent | [bugfix] Advertise audio/mpeg as supported (#3632) (diff) | |
download | gotosocial-29da5b35a5653ae1667400d1aeee93a360c9d7ee.tar.xz |
[bugfix] more little edit fixes (#3633)
* fix slice size calculation
* stop attached status edit slice getting cached
Diffstat (limited to 'internal/cache')
-rw-r--r-- | internal/cache/db.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cache/db.go b/internal/cache/db.go index dc47bc31c..7a47b811f 100644 --- a/internal/cache/db.go +++ b/internal/cache/db.go @@ -1320,6 +1320,7 @@ func (c *Caches) initStatus() { s2.Mentions = nil s2.Emojis = nil s2.CreatedWithApplication = nil + s2.Edits = nil return s2 } |