mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-18 12:25:14 +00:00
Append trailing slash to default GH API URL (#411)
This commit is contained in:
parent
5ef7e3c8e6
commit
88389e4a06
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
defaultURL = "https://github.com" // Default GitHub URL
|
defaultURL = "https://github.com" // Default GitHub URL
|
||||||
defaultAPI = "https://api.github.com" // Default GitHub API URL
|
defaultAPI = "https://api.github.com/" // Default GitHub API URL
|
||||||
)
|
)
|
||||||
|
|
||||||
// Opts defines configuration options.
|
// Opts defines configuration options.
|
||||||
|
|
Loading…
Reference in a new issue