Browse Source

fix: 解决 FreshClam 操作失败的问题 (#6374)

Refs #6372
pull/6379/head
ssongliu 3 months ago committed by GitHub
parent
commit
1cdc2e93ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      frontend/src/views/toolbox/clam/status/index.vue

3
frontend/src/views/toolbox/clam/status/index.vue

@ -134,6 +134,9 @@ const onOperate = async (service: string, operation: string) => {
) )
.then(() => { .then(() => {
em('update:loading', true); em('update:loading', true);
if (service === 'FreshClam') {
operation = 'fresh-' + operation;
}
updateClamBaseInfo(operation) updateClamBaseInfo(operation)
.then(() => { .then(() => {
em('update:maskShow', true); em('update:maskShow', true);

Loading…
Cancel
Save