Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to Push will be documented in this file.

## 0.4.2
- Fix issue with saved files not entering queue.

## 0.4.1
- Fix issue with scheme detection and insantiating commands from the command pallet.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "push",
"displayName": "Push",
"description": "SFTP and File based uploading",
"version": "0.4.1",
"version": "0.4.2",
"preview": true,
"publisher": "njp-anderson",
"engines": {
3 changes: 2 additions & 1 deletion src/Push.js
Original file line number Diff line number Diff line change
@@ -113,7 +113,8 @@ class Push extends PushBase {
didSaveTextDocument(textDocument) {
let settings;

if (!textDocument.uri || this.paths.isValidScheme(textDocument.uri)) {
if (!textDocument.uri || !this.paths.isValidScheme(textDocument.uri)) {
// Empty or invalid URI
return;
}

0 comments on commit 1259ea4

Please sign in to comment.