+2
-1
src/events/messageCreate.ts
+2
-1
src/events/messageCreate.ts
···
783
783
} else if (name === 'weather' || name === 'wiki') {
784
784
const textContent = result.result?.content?.find((c) => c.type === 'text')?.text;
785
785
if (textContent) {
786
-
await target.reply(textContent);
786
+
await target.reply(processUrls(textContent));
787
787
}
788
788
}
789
789
···
860
860
}
861
861
862
862
fullResponse += aiResponse.content;
863
+
fullResponse = processUrls(fullResponse);
863
864
864
865
const imageFiles: string[] = [];
865
866
if (executedResults) {