[skip ci] refactor: rename CowExploits to MDC

This commit is contained in:
naturecodevoid
2023-06-04 08:08:48 -07:00
parent 373a73c158
commit 2ff637f62e
7 changed files with 22 additions and 22 deletions

View File

@@ -45,10 +45,10 @@ struct Remove3AppLimitView: View {
var body: some View {
VStack {
if !CowExploits.isSupported {
if !MDC.isSupported {
notSupported.common()
} else {
if CowExploits.installdHasBeenPatched {
if MDC.installdHasBeenPatched {
installdHasBeenPatched.common()
} else {
applyPatch.common()
@@ -58,7 +58,7 @@ struct Remove3AppLimitView: View {
guard !runningPatch else { return }
runningPatch = true
try await CowExploits.patch3AppLimit()
try await MDC.patch3AppLimit()
showSuccessAlert = true
} catch {