update @ Sat 9 Oct 03:47:17 EEST 2021

This commit is contained in:
Ari Archer 2021-10-09 03:47:17 +03:00
parent ef51ba9192
commit 67c4c6a8e0

View file

@ -120,7 +120,7 @@ function su(cmd) {
return `Switched to the <b>${root ? '<b>root</b>' : localStorage.getItem('username')}</b> user.`
} else {
root = true;
let ret = '';
let ret = 'Command not found';
try {
ret = commands[cmd[0]]['func'](cmd.slice(1));