Vesktop: force disable broken DeepLinks experiment

This commit is contained in:
Vendicated 2025-04-04 22:54:27 +02:00
parent 478699d1b0
commit 8d0256bde8
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18

View file

@ -0,0 +1,23 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2025 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: "DisableDeepLinks",
description: "Disables Discord stupid DeepLinks experiment which makes the app unusable",
authors: [Devs.Ven],
required: true,
patches: [{
find: "2025-03_desktop_deeplinks",
replacement: {
match: /config:{enabled:!0/,
replace: "config:{enabled:!1",
}
}]
});