aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/noBlockedMessages.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/noBlockedMessages.ts')
-rw-r--r--src/plugins/noBlockedMessages.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/noBlockedMessages.ts b/src/plugins/noBlockedMessages.ts
index e46e7c3..bd72ce5 100644
--- a/src/plugins/noBlockedMessages.ts
+++ b/src/plugins/noBlockedMessages.ts
@@ -16,12 +16,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-import { Devs } from "../utils/constants";
-import { lazyWebpack } from "../utils/misc";
-import definePlugin, { OptionType } from "../utils/types";
-import { Settings } from "../Vencord";
-import { filters } from "../webpack";
-const RelationshipStore = lazyWebpack(filters.byProps("getRelationships", "isBlocked"));
+import { Settings } from "@api/settings";
+import { Devs } from "@utils/constants";
+import definePlugin, { OptionType } from "@utils/types";
+import { findByPropsLazy } from "@webpack";
+
+const RelationshipStore = findByPropsLazy("getRelationships", "isBlocked");
export default definePlugin({
name: "NoBlockedMessages",