feat: automated outbox model

This commit is contained in:
2023-11-22 13:58:11 +00:00
parent a80c330e5b
commit a67263e5e1
11 changed files with 219 additions and 208 deletions

View File

@ -19,7 +19,7 @@ export class UserRelaysCache extends FeedCache<UsersRelays> {
newest(): number {
let ret = 0;
this.cache.forEach(v => (ret = v.created_at > ret ? v.created_at : ret));
this.cache.forEach(v => (ret = v.created > ret ? v.created : ret));
return ret;
}