From b8a7468c4a7b0bca76cfe89bd7fd7527c4c9199a Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Thu, 31 Jan 2019 02:29:36 +0900 Subject: Do not import as pack from AP renderer (#4048) * Do not import as pack from AP renderer * rename --- src/remote/activitypub/renderer/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/remote/activitypub/renderer') diff --git a/src/remote/activitypub/renderer/index.ts b/src/remote/activitypub/renderer/index.ts index 30f5f1cff5..2fd5d34597 100644 --- a/src/remote/activitypub/renderer/index.ts +++ b/src/remote/activitypub/renderer/index.ts @@ -1,7 +1,7 @@ import config from '../../../config'; import * as uuid from 'uuid'; -export default (x: any) => { +export const renderActivity = (x: any) => { if (x == null) return null; if (x !== null && typeof x === 'object' && x.id == null) { -- cgit v1.2.3-freya