Commit 9c551795 authored by martin hou's avatar martin hou

fix: 修改文件列表的批次号tag避免冲突

parent 54d077f9
...@@ -657,7 +657,7 @@ Jensen.prototype.getBluetoothStatus = async function (seconds) { ...@@ -657,7 +657,7 @@ Jensen.prototype.getBluetoothStatus = async function (seconds) {
}; };
Jensen.prototype.listFiles = async function () { Jensen.prototype.listFiles = async function () {
let tag = 'filelist-' + this.serialNumber; let tag = 'filelist-' + this.serialNumber + '-' + new Date().getTime();
if (this[tag] != null) return null; if (this[tag] != null) return null;
let fc = null; let fc = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment