diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 04:15:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 04:15:27 +0900 |
| commit | cd2542e0fd8578f6e41114ffebbda1f16f7d04ce (patch) | |
| tree | c339b7808fc2a3d72ae30cb86ddb7b9c21852652 /src/processor/http/follow.ts | |
| parent | Refactor (diff) | |
| download | sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.tar.gz sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.tar.bz2 sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.zip | |
Refactor
Diffstat (limited to 'src/processor/http/follow.ts')
| -rw-r--r-- | src/processor/http/follow.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/http/follow.ts b/src/processor/http/follow.ts index 9b8337f2e7..4804657fd6 100644 --- a/src/processor/http/follow.ts +++ b/src/processor/http/follow.ts @@ -5,8 +5,8 @@ import User, { isLocalUser, pack as packUser, ILocalUser } from '../../models/us import Following from '../../models/following'; import event from '../../common/event'; import notify from '../../common/notify'; -import context from '../../common/remote/activitypub/renderer/context'; -import render from '../../common/remote/activitypub/renderer/follow'; +import context from '../../remote/activitypub/renderer/context'; +import render from '../../remote/activitypub/renderer/follow'; import config from '../../conf'; export default ({ data }, done) => Following.findOne({ _id: data.following }).then(({ followerId, followeeId }) => { |