You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: SCError.strings
+4
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,10 @@
36
36
37
37
// 400-499 = errors generated in the killer
38
38
"400" = "SelfControl couldn't manually clear the block, because there was an error running the helper tool.";
39
+
"401" = "Something went wrong, and SelfControl couldn't manually clear the block. Try again in a minute. If that doesn't work, go to www.selfcontrolapp.com/support to get help.";
40
+
"402" = "The killer helper tool couldn't launch because it had insufficient privileges.";
41
+
"403" = "The killer helper tool couldn't launch because it was provided the incorrect key.";
42
+
"404" = "The killer helper tool couldn't launch because it was provided an invalid key date.";
39
43
40
44
// 500-599 = errors generated in the XPC client
41
45
"500" = "There was an error trying to install SelfControl's helper tool: %@";
// reload settings since they've probably just been messed with
101
+
[[SCSettings sharedSettings] reloadSettings];
102
+
103
+
// send some debug info to Sentry to help us track this issue
104
+
[SCSentry captureMessage:@"User manually cleared SelfControl block from the SelfControl Killer app"];
105
+
106
+
if ([SCBlockUtilities anyBlockIsRunning]) {
107
+
// ruh roh! the block wasn't cleared successfully, since it's still running
108
+
NSError* err = [SCErr errorWithCode:401];
109
+
[SCSentry captureError: err];
110
+
[SCUIUtilities presentError: err];
111
+
} else {
112
+
NSAlert* alert = [[NSAlertalloc] init];
113
+
[alert setMessageText:@"Success!"];
114
+
[alert setInformativeText:@"The block was cleared successfully. You can find the log file, named SelfControl-Killer.log, in your Documents folder. If you're still having issues, please check out the SelfControl FAQ on GitHub."];
[alert setInformativeText:@"The block was cleared successfully. You can find the log file, named SelfControl-Killer.log, in your Documents folder. If you're still having issues, please check out the SelfControl FAQ on GitHub."];
404
-
[alert addButtonWithTitle:@"OK"];
405
-
[alert runModal];
407
+
if ([SCBlockUtilities anyBlockIsRunning]) {
408
+
// ruh roh! the block wasn't cleared successfully, since it's still running
409
+
NSError* err = [SCErr errorWithCode:401];
410
+
[SCSentry captureError: err];
411
+
[SCUIUtilities presentError: err];
412
+
} else {
413
+
NSAlert* alert = [[NSAlertalloc] init];
414
+
[alert setMessageText:@"Success!"];
415
+
[alert setInformativeText:@"The block was cleared successfully. You can find the log file, named SelfControl-Killer.log, in your Documents folder. If you're still having issues, please check out the SelfControl FAQ on GitHub."];
0 commit comments