fixed the issue with displaying licenses (#1610)

This commit is contained in:
Leila Lali
2018-06-12 13:41:59 -07:00
committed by GitHub
parent 406b171c66
commit d39ceffa94
3 changed files with 27 additions and 18 deletions

View File

@@ -771,7 +771,8 @@ export class IssueReporter extends Disposable {
}
}
const queryStringPrefix = product.reportIssueUrl.indexOf('?') === -1 ? '?' : '&';
// {{SQL CARBON EDIT}}
const queryStringPrefix = repositoryUrl.indexOf('?') === -1 ? '?' : '&';
return `${repositoryUrl}${queryStringPrefix}title=${encodeURIComponent(issueTitle)}`;
}