Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
--replace-all committed Jun 25, 2019
1 parent 0f28791 commit 6f0b604
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-settings-sync",
"displayName": "Settings Sync",
"description": "Synchronize Settings, Snippets, Themes, File Icons, Launch, Keybindings, Workspaces and Extensions Across Multiple Machines Using GitHub Gist.",
"version": "3.3.0",
"version": "3.3.1",
"icon": "images/cloud.png",
"publisher": "Shan",
"author": {
Expand Down
3 changes: 1 addition & 2 deletions src/commons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ export default class Commons {
Object.assign(customSettings, tempObj);
customSettings.token = customSettings.token.trim();
}
return customSettings;
} catch (e) {
customSettings = null;
Commons.LogException(
e,
"Sync : Unable to read " +
Expand All @@ -182,7 +182,6 @@ export default class Commons {
"http://shanalikhan.github.io/2017/02/19/Option-to-ignore-settings-folders-code-settings-sync.html"
)
);
customSettings = null;
return customSettings;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/environmentPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function osTypeFromString(osName: string): OsType {
}

export class Environment {
public static CURRENT_VERSION: number = 330;
public static CURRENT_VERSION: number = 331;
public static getVersion(): string {
return (
Environment.CURRENT_VERSION.toString().slice(0, 1) +
Expand Down

0 comments on commit 6f0b604

Please sign in to comment.