From a29ddfc3c59f7d044c5de53d6b1745593ff167ae Mon Sep 17 00:00:00 2001 From: xian18 <44394537+xian18@users.noreply.github.com> Date: Fri, 11 Feb 2022 20:13:30 +0800 Subject: [PATCH] #publish .. --- js/plugins/SF_AutoUpdate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/plugins/SF_AutoUpdate.js b/js/plugins/SF_AutoUpdate.js index a4f70aa..c21917d 100644 --- a/js/plugins/SF_AutoUpdate.js +++ b/js/plugins/SF_AutoUpdate.js @@ -433,9 +433,9 @@ var SF_Plugins = SF_Plugins || {}; Scene_AutoUpdate.prototype._onCompareWorkerMessage = function (e) { var result = e.data; if (result.command === 'delete') { - this._deleteFileList.concat(result.file_list); + this._deleteFileList = this._deleteFileList.concat(result.file_list); } else if (result.command === 'update') { - this._updateFileList.concat(result.file_list); + this._updateFileList = this._updateFileList.concat(result.file_list); } else { this._status = "completed"; }