diff --git a/src/dv/dotinoVeloce.ts b/src/dv/dotinoVeloce.ts index a99140d..470ff87 100644 --- a/src/dv/dotinoVeloce.ts +++ b/src/dv/dotinoVeloce.ts @@ -19,7 +19,7 @@ export class DotinoVeloce { this.stratz = stratz this.federation = createFederation({ kv }) this.federation.setInboxListeners("/inbox/{identifier}", /* We don't need shared inboxes here. */) - this.federation.setActorDispatcher("/users/{identifier}", this.#actorDispatcher) + this.federation.setActorDispatcher("/users/{identifier}", this.#actorHandler) } #commonActorProperties(ctx: Context, handle: string): Partial { @@ -186,7 +186,7 @@ export class DotinoVeloce { return actor } - async #actorDispatcher(ctx: any, handle: string) { + async #actorHandler(ctx: any, handle: string) { l.debug`Handling actor with handle: ${handle}` let actor = null