Skip to content

Commit

Permalink
Revert back to full URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek committed Apr 20, 2022
1 parent e746a48 commit 71b6ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/gitpod/src/settingsSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface ConfigurationSyncStore {
authenticationProviders: Record<string, { scopes: string[] }>;
}

export const getGitpodHost = () => new URL(`https://${vscode.workspace.getConfiguration('gitpod').get<string>('host') || 'gitpod.io'}`);
export const getGitpodHost = () => new URL(vscode.workspace.getConfiguration('gitpod').get<string>('host') || 'https://gitpod.io/');

function getGitpodSyncProviderConfig(): ConfigurationSyncStore {
const serviceUrl = getGitpodHost().toString();
Expand Down

0 comments on commit 71b6ac8

Please sign in to comment.