summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/perform.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-08-19 21:55:45 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-08-19 21:55:45 +0900
commit42cc93dd0f189995f29fc87d2734fc809105a7cf (patch)
tree7a74658a76d71d4c07bf89a7028fa1786af0e13e /src/remote/activitypub/perform.ts
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadmisskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.tar.gz
misskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.tar.bz2
misskey-42cc93dd0f189995f29fc87d2734fc809105a7cf.zip
fix: mochaが動かないため拡張子なしに戻した
Diffstat (limited to 'src/remote/activitypub/perform.ts')
-rw-r--r--src/remote/activitypub/perform.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remote/activitypub/perform.ts b/src/remote/activitypub/perform.ts
index 3e18815586..01f0e3676e 100644
--- a/src/remote/activitypub/perform.ts
+++ b/src/remote/activitypub/perform.ts
@@ -1,6 +1,6 @@
-import { IObject } from './type.js';
-import { IRemoteUser } from '@/models/entities/user.js';
-import { performActivity } from './kernel/index.js';
+import { IObject } from './type';
+import { IRemoteUser } from '@/models/entities/user';
+import { performActivity } from './kernel/index';
export default async (actor: IRemoteUser, activity: IObject): Promise<void> => {
await performActivity(actor, activity);