Skip to content

Commit e7a4cb0

Browse files
committed
fix: change the default host for Gitlab
1 parent 87c59c7 commit e7a4cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitlabHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class GitlabHelper {
3737
this.gitlabUrl = gitlabSettings.url;
3838
this.gitlabToken = gitlabSettings.token;
3939
this.gitlabProjectId = gitlabSettings.projectId;
40-
this.host = gitlabSettings.url ? gitlabSettings.url : 'http://gitlab.com';
40+
this.host = gitlabSettings.url ? gitlabSettings.url : 'https://gitlab.com';
4141
this.host = this.host.endsWith('/')
4242
? this.host.substring(0, this.host.length - 1)
4343
: this.host;

0 commit comments

Comments
 (0)