Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-akhalkov committed Feb 14, 2018
2 parents 09cfe62 + fc986b3 commit 3be9bc5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.3.4

* Fixed issue with launch args in vscode 1.20.0
* Added survey to README

## 1.3.3

* Fix platforms detection according to new files structure
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ionic",
"multi-root ready"
],
"version": "1.3.3",
"version": "1.3.4",
"private": true,
"publisher": "vsmobile",
"icon": "images/icon.png",
Expand Down
4 changes: 2 additions & 2 deletions src/common/extensionMessaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class ExtensionMessageSender {
private hash: string;

constructor(projectRoot: string) {
this.hash = Hash.hashCode(projectRoot);
this.hash = Hash.hashCode(projectRoot.toLocaleLowerCase());
}

public getExtensionPipePath(): string {
Expand Down Expand Up @@ -61,7 +61,7 @@ export class ExtensionMessageSender {
});

socket.on("error", function (data: any) {
deferred.reject(new Error("An error occurred while handling message: " + ExtensionMessage[message]));
deferred.reject(new Error("An error occurred while handling message: " + ExtensionMessage[message] + data));
});

socket.on("end", function () {
Expand Down

0 comments on commit 3be9bc5

Please sign in to comment.