2024-05-03 20:42:14 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a Discord client mod
|
|
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin from "@utils/types";
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "ImageLink",
|
|
|
|
description: "Never hide image links in messages, even if it's the only content",
|
2024-05-05 08:15:01 +00:00
|
|
|
authors: [Devs.Kyuuhachi, Devs.Sqaaakoi],
|
2024-05-03 20:42:14 +00:00
|
|
|
|
|
|
|
patches: [
|
|
|
|
{
|
2024-05-05 08:15:01 +00:00
|
|
|
find: "unknownUserMentionPlaceholder:",
|
2024-05-03 20:42:14 +00:00
|
|
|
replacement: {
|
2024-05-05 08:15:01 +00:00
|
|
|
match: /\(0,\i\.isEmbedInline\)\(\i\)/,
|
|
|
|
replace: "false",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2024-05-03 20:42:14 +00:00
|
|
|
});
|