Fix indent

This commit is contained in:
mei23 2018-08-17 06:46:22 +09:00
parent a89c206572
commit 939c0dc5f9

View file

@ -235,8 +235,8 @@ export default async (user: IUser, data: Option, silent = false) => new Promise<
async function renderActivity(data: Option, note: INote) {
const content = data.renote && data.text == null
? renderAnnounce(data.renote.uri ? data.renote.uri : await renderNote(data.renote), note)
: renderCreate(await renderNote(note));
? renderAnnounce(data.renote.uri ? data.renote.uri : await renderNote(data.renote), note)
: renderCreate(await renderNote(note));
return packAp(content);
}