diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:43:07 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:43:07 +0900 |
| commit | c74fe3c6e2aae3df4624b9b3a55b45293223ebf5 (patch) | |
| tree | 53ed8d31143b15b6621e59002006e318789e36a4 /src/server/activitypub.ts | |
| parent | refactor: Tweak path alias of client (diff) | |
| download | sharkey-c74fe3c6e2aae3df4624b9b3a55b45293223ebf5.tar.gz sharkey-c74fe3c6e2aae3df4624b9b3a55b45293223ebf5.tar.bz2 sharkey-c74fe3c6e2aae3df4624b9b3a55b45293223ebf5.zip | |
refactor: Use path alias
Diffstat (limited to 'src/server/activitypub.ts')
| -rw-r--r-- | src/server/activitypub.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/activitypub.ts b/src/server/activitypub.ts index 694807239b..0ddc4683fe 100644 --- a/src/server/activitypub.ts +++ b/src/server/activitypub.ts @@ -12,12 +12,12 @@ import Followers from './activitypub/followers'; import Following from './activitypub/following'; import Featured from './activitypub/featured'; import { inbox as processInbox } from '../queue'; -import { isSelfHost } from '../misc/convert-host'; +import { isSelfHost } from '@/misc/convert-host'; import { Notes, Users, Emojis, NoteReactions } from '../models'; import { ILocalUser, User } from '../models/entities/user'; import { In } from 'typeorm'; import { renderLike } from '../remote/activitypub/renderer/like'; -import { getUserKeypair } from '../misc/keypair-store'; +import { getUserKeypair } from '@/misc/keypair-store'; // Init router const router = new Router(); |