diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-07 17:14:39 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-10 09:38:11 +0200 |
commit | e024fd6a7494b37251da1d59470324305cdb4129 (patch) | |
tree | e39b8c4b1bd8ba38936f0657e485358fc10b9050 /server/models/activitypub | |
parent | 1e0741d16545ea720d04b566a808853b3975ea7f (diff) | |
download | PeerTube-e024fd6a7494b37251da1d59470324305cdb4129.tar.gz PeerTube-e024fd6a7494b37251da1d59470324305cdb4129.tar.zst PeerTube-e024fd6a7494b37251da1d59470324305cdb4129.zip |
Update channel updatedAt when uploading a video
Diffstat (limited to 'server/models/activitypub')
-rw-r--r-- | server/models/activitypub/actor.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/models/activitypub/actor.ts b/server/models/activitypub/actor.ts index 396a52337..1af9efac2 100644 --- a/server/models/activitypub/actor.ts +++ b/server/models/activitypub/actor.ts | |||
@@ -557,8 +557,7 @@ export class ActorModel extends Model { | |||
557 | followingCount: this.followingCount, | 557 | followingCount: this.followingCount, |
558 | followersCount: this.followersCount, | 558 | followersCount: this.followersCount, |
559 | banner, | 559 | banner, |
560 | createdAt: this.getCreatedAt(), | 560 | createdAt: this.getCreatedAt() |
561 | updatedAt: this.updatedAt | ||
562 | }) | 561 | }) |
563 | } | 562 | } |
564 | 563 | ||