From ec571534c5e9a464e667a077d433ab3815eafc4e Mon Sep 17 00:00:00 2001 From: seeyebe Date: Sat, 15 Nov 2025 23:01:50 +0200 Subject: [PATCH] fix: update imports for Logs plugin to use correct modules --- backend/src/plugins/Logs/types.ts | 1 + backend/src/plugins/Logs/util/getMessageReplyLogInfo.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/plugins/Logs/types.ts b/backend/src/plugins/Logs/types.ts index e33c00b90..ab789024b 100644 --- a/backend/src/plugins/Logs/types.ts +++ b/backend/src/plugins/Logs/types.ts @@ -22,6 +22,7 @@ import { TemplateSafeUser, } from "../../utils/templateSafeObjects.js"; import DefaultLogMessages from "../../data/DefaultLogMessages.json" with { type: "json" }; +import { TemplateSafeValueContainer } from "templateFormatter.js"; const DEFAULT_BATCH_TIME = 1000; const MIN_BATCH_TIME = 250; diff --git a/backend/src/plugins/Logs/util/getMessageReplyLogInfo.ts b/backend/src/plugins/Logs/util/getMessageReplyLogInfo.ts index b63b76b7f..baa530ec6 100644 --- a/backend/src/plugins/Logs/util/getMessageReplyLogInfo.ts +++ b/backend/src/plugins/Logs/util/getMessageReplyLogInfo.ts @@ -1,4 +1,4 @@ -import { GuildPluginData } from "knub"; +import { GuildPluginData } from "vety"; import { ISavedMessageAttachmentData, SavedMessage } from "../../../data/entities/SavedMessage.js"; import { messageLink, messageSummary, useMediaUrls } from "../../../utils.js"; import { TemplateSafeValueContainer } from "../../../templateFormatter.js";