mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-05-11 09:56:03 +02:00
24 lines
633 B
TypeScript
24 lines
633 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: "DynamicImageModalAPI",
|
|
authors: [Devs.sadan, Devs.Nuckyz],
|
|
description: "Allows you to omit either width or height when opening an image modal",
|
|
patches: [
|
|
{
|
|
find: ".dimensionlessImage,",
|
|
replacement: {
|
|
match: /(?<="IMAGE"===\i&&\(\i=)\i(?=\?)/,
|
|
replace: "true"
|
|
}
|
|
}
|
|
]
|
|
});
|