fix(remote-control): avoid mid-turn model resync

This commit is contained in:
Yejun Su 2026-03-20 18:39:04 +08:00
parent 0dd6960688
commit aacabde7dc
No known key found for this signature in database
GPG Key ID: AD03A563F321CA44
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ export default function remoteControl(pi: ExtensionAPI) {
});
pi.on("model_select", async (_event, ctx) => {
if (!ctx.isIdle()) return;
scheduleSync(ctx);
});