mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-08 11:11:33 -07:00
fix replacements crashing on delivering poll votes
Some checks failed
/ test-build (push) Has been cancelled
Some checks failed
/ test-build (push) Has been cancelled
This commit is contained in:
parent
4bc55eb6c9
commit
ebe2ff0e21
1 changed files with 20 additions and 18 deletions
|
@ -36,24 +36,26 @@ export default async (job: Bull.Job<DeliverJobData>) => {
|
|||
logger.debug(`delivering ${latest}`);
|
||||
}
|
||||
|
||||
let i = undefined;
|
||||
|
||||
if (
|
||||
["Create", "Update"].includes(job.data.content.type)
|
||||
&& job.data.content.object.type === "Note"
|
||||
) {
|
||||
const obj = job.data.content.object;
|
||||
const patchSrcContent = shouldPatchText(obj.source.content);
|
||||
if (patchSrcContent) {
|
||||
i = await registerOrFetchInstanceDoc(host);
|
||||
if (shouldPatchText(obj.content))
|
||||
obj.content = patchText(obj.content, i);
|
||||
if (shouldPatchText(obj._misskey_content))
|
||||
obj._misskey_content = patchText(obj._misskey_content, i);
|
||||
if (patchSrcContent)
|
||||
obj.source.content = patchText(obj.source.content, i);
|
||||
}
|
||||
}
|
||||
let i = undefined;
|
||||
|
||||
if (
|
||||
["Create", "Update"].includes(job.data.content.type)
|
||||
&& job.data.content.object.type === "Note"
|
||||
&& job.data.content.object.content
|
||||
) {
|
||||
const obj = job.data.content.object;
|
||||
const patchSrcContent = shouldPatchText(obj.source.content);
|
||||
if (patchSrcContent) {
|
||||
i = await registerOrFetchInstanceDoc(host);
|
||||
if (shouldPatchText(obj.content))
|
||||
obj.content = patchText(obj.content, i);
|
||||
if (shouldPatchText(obj._misskey_content))
|
||||
obj._misskey_content = patchText(obj._misskey_content, i);
|
||||
if (patchSrcContent)
|
||||
obj.source.content = patchText(obj.source.content, i);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
await request(job.data.user, job.data.to, job.data.content);
|
||||
|
||||
|
|
Loading…
Reference in a new issue