Change log: https://roxy-wi.org/changelog.py#6_1
This commit is contained in:
Pavel Loginov
2022-06-17 00:24:15 +03:00
parent 82b2e25cb6
commit d80eaffd9c
2 changed files with 10 additions and 3 deletions

View File

@@ -2331,7 +2331,7 @@ function updateService(service, action='update') {
data = data.replace(/\s+/g,' ');
if (data.indexOf('error:') != '-1' || data.indexOf('Failed') != '-1') {
toastr.error(data);
} else if (data.indexOf('Complete!') != '-1' || data.indexOf('Unpacking!') != '-1'){
} else if (data.indexOf('Complete!') != '-1' || data.indexOf('Unpacking') != '-1'){
toastr.clear();
toastr.success(service + ' has been '+action+'ed');
} else if (data.indexOf('Unauthorized') != '-1') {