diff --git a/src/equicordplugins/noDeleteSafety/index.tsx b/src/equicordplugins/noDeleteSafety/index.tsx index 6a28ed2a..c2fc7505 100644 --- a/src/equicordplugins/noDeleteSafety/index.tsx +++ b/src/equicordplugins/noDeleteSafety/index.tsx @@ -34,10 +34,9 @@ export default definePlugin({ settings, async HandleGuildDeleteModal(server) { if (settings.store.confirmModal) { - Alerts.show({ title: "Delete server?", body:
It's permanent, if that wasn't obvious.
, confirmColor: Button.Colors.RED, confirmText: "Delete", onConfirm: () => GetPropsAndDeleteGuild(server.id), cancelText: "Cancel" }); - } - else { - GetPropsAndDeleteGuild(server.id); + return Alerts.show({ title: "Delete server?", body:It's permanent, if that wasn't obvious.
, 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);$&" } } ]