diff options
| author | default <nobody@localhost> | 2025-01-09 19:21:06 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-09 19:21:06 +0100 |
| commit | 41cb63c936e1520def842f381334397a572bc1cd (patch) | |
| tree | fdd6119870ccfe91edbd1e58b4354f71ca993d67 /data.c | |
| parent | 12fcc053b5bfd2c978ae6daf4a61922249b8e251 (diff) | |
Added some actor object caching.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -336,6 +336,10 @@ int user_persist(snac *snac, int publish) if (!nw) publish = 0; + else { + /* uncache the actor object */ + object_del(snac->actor); + } } } } |