mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 10:26:21 +00:00
25 lines
638 B
TypeScript
25 lines
638 B
TypeScript
|
/*
|
||
|
* 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",
|
||
|
authors: [Devs.Kyuuhachi],
|
||
|
|
||
|
patches: [
|
||
|
{
|
||
|
find: "isEmbedInline:function()",
|
||
|
replacement: {
|
||
|
match: /(?<=isEmbedInline:function\(\)\{return )\i(?=\})/,
|
||
|
replace: "()=>false",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
});
|