1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-02 09:21:40 +02:00

fix: accidentally escaped %s

This commit is contained in:
William Wagner Moraes Artero 2020-02-25 19:56:07 +01:00 committed by Jesse Duffield
parent 6f4c595dde
commit a79182e50d

View File

@ -33,7 +33,7 @@ func NewService(typeName string, repositoryDomain string, siteDomain string) *Se
case "github":
return &Service{
Name: repositoryDomain,
PullRequestURL: fmt.Sprintf("https://%s%s", siteDomain, "/%s/%s/compare/%%s?expand=1"),
PullRequestURL: fmt.Sprintf("https://%s%s", siteDomain, "/%s/%s/compare/%s?expand=1"),
}
case "bitbucket":
return &Service{