Skip to content

Commit

Permalink
Merge pull request #506 from OmniSharp/master
Browse files Browse the repository at this point in the history
Merge master into release
  • Loading branch information
DustinCampbell authored Jun 29, 2016
2 parents 0aca962 + 8adca92 commit 09bd9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function getSupportedPlatform() {

// Strip double quotes if necessary
if (value.length > 1 && value.startsWith('"') && value.endsWith('"')) {
value = value.substring(1, value.length - 2);
value = value.substring(1, value.length - 1);
}

return value;
Expand Down

0 comments on commit 09bd9f0

Please sign in to comment.