Commit 239aac54 authored by martin hou's avatar martin hou

fix: 取消对busy时对getSettings的屏蔽处理

parent 09a42943
...@@ -1249,7 +1249,7 @@ Jensen.prototype.getSettings = async function (seconds) { ...@@ -1249,7 +1249,7 @@ Jensen.prototype.getSettings = async function (seconds) {
return { autoRecord: false, autoPlay: false }; return { autoRecord: false, autoPlay: false };
} }
if (this.isLiveMode()) return null; if (this.isLiveMode()) return null;
if (this.busy()) return null; // if (this.busy()) return null;
return this.send(new Command(GET_SETTINGS), seconds); return this.send(new Command(GET_SETTINGS), seconds);
}; };
......
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