X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Factor.ts;h=a60d3ed5d06340c96d8cfb367cd62df5d807285b;hb=88cfa3e8fa8417f14a905c089e57e1648f5a3846;hp=015b4a39ffb3a1d2afe2c9a4ad7ff7952e4916bb;hpb=26d6bf6533023326fa017812cf31bbe20c752d36;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/actor.ts b/server/helpers/actor.ts index 015b4a39f..a60d3ed5d 100644 --- a/server/helpers/actor.ts +++ b/server/helpers/actor.ts @@ -1,10 +1,10 @@ + import { ActorModel } from '../models/activitypub/actor' -import * as Bluebird from 'bluebird' -import { MActorFull, MActorAccountChannelId } from '../types/models' +import { MActorAccountChannelId, MActorFull } from '../types/models' type ActorFetchByUrlType = 'all' | 'association-ids' -function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Bluebird { +function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Promise { if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url) if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)