dfljkgkjdfg

This commit is contained in:
Madeline
2023-08-14 20:33:05 +10:00
parent 8cf33244b9
commit 394635b0fe
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ router.get("/", route({}), async (req, res) => {
const { webDomain } = Config.get().federation;
const ret = makeOrderedCollection(
const ret = await makeOrderedCollection(
req,
`https://${webDomain}/fed/channels/${channel_id}/followers`,
() =>

View File

@@ -15,7 +15,7 @@ router.get("/", route({}), async (req, res) => {
const { webDomain } = Config.get().federation;
const ret = makeOrderedCollection(
const ret = await makeOrderedCollection(
req,
`https://${webDomain}/fed/channels/${channel_id}/outbox`,
() => Message.count({ where: { channel_id } }),