We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c33147 commit d431845Copy full SHA for d431845
package.json
@@ -3,7 +3,7 @@
3
"displayName": "git-livesync",
4
"publisher": "bwfiq",
5
"description": "Watch for file changes and sync them to a remote repository.",
6
- "version": "0.1.1",
+ "version": "0.1.2",
7
"engines": {
8
"vscode": "^1.96.0"
9
},
src/gitHandler.ts
@@ -39,7 +39,7 @@ export class GitHandler {
39
private startAutoPull() {
40
// Use a recursive function for continuous pulling
41
const pullLoop = async () => {
42
- if (utils.getAutoPull()) {
+ if (utils.getEnabled() && utils.getAutoPull()) {
43
await this.pull(); // Attempt to pull
44
}
45
0 commit comments