diff options
Diffstat (limited to 'server/lib/video-channel.ts')
-rw-r--r-- | server/lib/video-channel.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/lib/video-channel.ts b/server/lib/video-channel.ts index 600316cda..0fe95ca09 100644 --- a/server/lib/video-channel.ts +++ b/server/lib/video-channel.ts | |||
@@ -7,9 +7,8 @@ import { buildActorInstance, getVideoChannelActivityPubUrl } from './activitypub | |||
7 | 7 | ||
8 | async function createVideoChannel (videoChannelInfo: VideoChannelCreate, account: AccountModel, t: Sequelize.Transaction) { | 8 | async function createVideoChannel (videoChannelInfo: VideoChannelCreate, account: AccountModel, t: Sequelize.Transaction) { |
9 | const uuid = uuidv4() | 9 | const uuid = uuidv4() |
10 | const url = getVideoChannelActivityPubUrl(uuid) | 10 | const url = getVideoChannelActivityPubUrl(videoChannelInfo.name) |
11 | // We use the name as uuid | 11 | const actorInstance = buildActorInstance('Group', url, videoChannelInfo.name, uuid) |
12 | const actorInstance = buildActorInstance('Group', url, uuid, uuid) | ||
13 | 12 | ||
14 | const actorInstanceCreated = await actorInstance.save({ transaction: t }) | 13 | const actorInstanceCreated = await actorInstance.save({ transaction: t }) |
15 | 14 | ||