Skip to content
Snippets Groups Projects
Commit 44d708dc authored by deuce's avatar deuce
Browse files

Disable quick-connect in safe mode.

parent d79887a2
No related branches found
No related tags found
No related merge requests found
......@@ -1589,6 +1589,13 @@ struct bbslist *show_bbslist(char *current, int connected)
break;
case -6: /* CTRL-D */
if(!connected) {
if(safe_mode) {
uifc.helpbuf= "`Cannot Quick-Connect in safe mode`\n\n"
"SyncTERM is currently running in safe mode. This means you cannot use the\n"
"Quick-Connect feature.";
uifc.msg("Cannot edit list in safe mode");
break;
}
uifc.changes=0;
uifc.helpbuf= "`SyncTERM Quick-Connect`\n\n"
"Enter a URL in the format:\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment