1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 10:19:35 +02:00

Warn user when they want to delete a channel

Because they will not be able to create another channel with the same
actor name
This commit is contained in:
Chocobozzz 2019-01-14 10:24:49 +01:00
parent 7b95f31385
commit b4593cd7ff
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 9 additions and 5 deletions

View file

@ -35,7 +35,7 @@ async function processActivities (
const actorsCache: { [ url: string ]: ActorModel } = {}
for (const activity of activities) {
if (!options.signatureActor && [ 'Create', 'Announce', 'Like' ].indexOf(activity.type) === -1) {
if (!options.signatureActor && [ 'Create', 'Announce', 'Like' ].includes(activity.type) === false) {
logger.error('Cannot process activity %s (type: %s) without the actor signature.', activity.id, activity.type)
continue
}