]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/lib/local-actor.ts
Try to fix weird CI test crashes
[github/Chocobozzz/PeerTube.git] / server / lib / local-actor.ts
index 2d2bd43a162f77bf25413242c6b99794b6d3e522..77667f6b0bfb51f2428b0e2dd20ad760f9f2d342 100644 (file)
@@ -2,8 +2,8 @@ import 'multer'
 import { queue } from 'async'
 import * as LRUCache from 'lru-cache'
 import { join } from 'path'
-import { v4 as uuidv4 } from 'uuid'
 import { getLowercaseExtension } from '@server/helpers/core-utils'
+import { buildUUID } from '@server/helpers/uuid'
 import { ActorModel } from '@server/models/actor/actor'
 import { ActivityPubActorType, ActorImageType } from '@shared/models'
 import { retryTransactionWrapper } from '../helpers/database-utils'
@@ -44,7 +44,7 @@ async function updateLocalActorImageFile (
 
   const extension = getLowercaseExtension(imagePhysicalFile.filename)
 
-  const imageName = uuidv4() + extension
+  const imageName = buildUUID() + extension
   const destination = join(CONFIG.STORAGE.ACTOR_IMAGES, imageName)
   await processImage(imagePhysicalFile.path, destination, imageSize)