From 02de47e83f9284d66823170046448d5cb17251ad Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Thu, 19 Sep 2024 15:54:35 +0100 Subject: [PATCH] fix imports --- src/protections/MentionSpam.ts | 2 +- src/protections/ProtectionManager.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protections/MentionSpam.ts b/src/protections/MentionSpam.ts index 0eb253c..0d0715c 100644 --- a/src/protections/MentionSpam.ts +++ b/src/protections/MentionSpam.ts @@ -16,7 +16,7 @@ limitations under the License. import { Protection } from "./IProtection"; import { Mjolnir } from "../Mjolnir"; -import { LogLevel, Permalinks, UserID } from "@vector-im/matrix-bot-sdk"; +import { LogLevel, Permalinks, UserID } from "matrix-bot-sdk"; import { NumberProtectionSetting } from "./ProtectionSettings"; export const DEFAULT_MAX_MENTIONS = 8; diff --git a/src/protections/ProtectionManager.ts b/src/protections/ProtectionManager.ts index 525fc68..06789d9 100644 --- a/src/protections/ProtectionManager.ts +++ b/src/protections/ProtectionManager.ts @@ -24,7 +24,7 @@ import { MessageIsMedia } from "./MessageIsMedia"; import { TrustedReporters } from "./TrustedReporters"; import { JoinWaveShortCircuit } from "./JoinWaveShortCircuit"; import { Mjolnir } from "../Mjolnir"; -import { extractRequestError, LogLevel, LogService, Permalinks } from "@vector-im/matrix-bot-sdk"; +import { extractRequestError, LogLevel, LogService, Permalinks } from "matrix-bot-sdk"; import { ProtectionSettingValidationError } from "./ProtectionSettings"; import { Consequence } from "./consequence"; import { htmlEscape } from "../utils";