diff --git a/CCMenu/Source/Server Monitor/GitHubAPI.swift b/CCMenu/Source/Server Monitor/GitHubAPI.swift index 309b664..41a7eda 100644 --- a/CCMenu/Source/Server Monitor/GitHubAPI.swift +++ b/CCMenu/Source/Server Monitor/GitHubAPI.swift @@ -89,7 +89,7 @@ class GitHubAPI { } static func requestForFeed(feed: Pipeline.Feed, token: String?) -> URLRequest? { - guard var components = URLComponents(url: feed.url, resolvingAgainstBaseURL: false) else { return nil } + guard var components = URLComponents(url: feed.url, resolvingAgainstBaseURL: true) else { return nil } components.appendQueryItem(URLQueryItem(name: "per_page", value: "3")) return makeRequest(url: components.url!.absoluteURL, token: token) }