mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 05:13:29 -05:00
Updates To No Delete Safety
This commit is contained in:
parent
22316a9610
commit
870a9c940a
1 changed files with 4 additions and 5 deletions
|
@ -34,10 +34,9 @@ export default definePlugin({
|
|||
settings,
|
||||
async HandleGuildDeleteModal(server) {
|
||||
if (settings.store.confirmModal) {
|
||||
Alerts.show({ title: "Delete server?", body: <p>It's permanent, if that wasn't obvious.</p>, confirmColor: Button.Colors.RED, confirmText: "Delete", onConfirm: () => GetPropsAndDeleteGuild(server.id), cancelText: "Cancel" });
|
||||
}
|
||||
else {
|
||||
GetPropsAndDeleteGuild(server.id);
|
||||
return Alerts.show({ title: "Delete server?", body: <p>It's permanent, if that wasn't obvious.</p>, confirmColor: Button.Colors.RED, confirmText: "Delete", onConfirm: () => GetPropsAndDeleteGuild(server.id), cancelText: "Cancel" });
|
||||
} else {
|
||||
return GetPropsAndDeleteGuild(server.id);
|
||||
}
|
||||
},
|
||||
patches: [
|
||||
|
@ -45,7 +44,7 @@ export default definePlugin({
|
|||
find: ".DELETE,onClick(){let",
|
||||
replacement: {
|
||||
match: /let \i=(\i).guild.toString\(\)/,
|
||||
replace: "$self.HandleGuildDeleteModal($1);return;$&"
|
||||
replace: "$self.HandleGuildDeleteModal($1);$&"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue