1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-04 10:34:55 +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": case "github":
return &Service{ return &Service{
Name: repositoryDomain, 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": case "bitbucket":
return &Service{ return &Service{