Skip to content

Commit

Permalink
Fix crash in client module (#1506)
Browse files Browse the repository at this point in the history
Temporary key name was lost outside of the switch block, resulting in an attempt to access .length of 'undefined'
  • Loading branch information
bobbrow authored Jan 31, 2018
1 parent fd7b691 commit 7a39eda
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Extension/src/LanguageServer/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ function collectSettingsForTelemetry(filter: (key: string, val: string, settings
} else {
result[newKey] = "null";
}
key = newKey;
break;
}
default: {
Expand Down

0 comments on commit 7a39eda

Please sign in to comment.