Skip to content

Commit

Permalink
Add codespaces as a remote authority
Browse files Browse the repository at this point in the history
  • Loading branch information
lramos15 committed Oct 8, 2021
1 parent bb8286d commit c4d17f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/baseTelemetryReporter.ts
Expand Up @@ -67,7 +67,7 @@ export class BaseTelemtryReporter {

let ret = "other";
// Allowed remote authorities
["ssh-remote", "dev-container", "attached-container", "wsl"].forEach((res: string) => {
["ssh-remote", "dev-container", "attached-container", "wsl", "codespaces"].forEach((res: string) => {
if (remoteName!.indexOf(`${res}+`) === 0) {
ret = res;
}
Expand Down

0 comments on commit c4d17f1

Please sign in to comment.