Przeglądaj źródła

fix: vcs watcher if statement (#17673)

Aiden Cline 6 miesięcy temu
rodzic
commit
510374207d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/opencode/src/project/vcs.ts

+ 1 - 1
packages/opencode/src/project/vcs.ts

@@ -47,7 +47,7 @@ export namespace Vcs {
       log.info("initialized", { branch: current })
 
       const unsubscribe = Bus.subscribe(FileWatcher.Event.Updated, async (evt) => {
-        if (evt.properties.file.endsWith("HEAD")) return
+        if (!evt.properties.file.endsWith("HEAD")) return
         const next = await currentBranch()
         if (next !== current) {
           log.info("branch changed", { from: current, to: next })