Fixes incorrect “Search FAQ” URL in Error Log

This commit is contained in:
Riley Testut
2022-10-26 18:09:15 -05:00
parent 41db3e42ce
commit 4ef94d22e4

View File

@@ -248,7 +248,7 @@ private extension ErrorLogViewController
func searchFAQ(for loggedError: LoggedError)
{
let baseURL = URL(string: "https://faq.altstore.io/getting-started/troubleshooting-guide")!
let baseURL = URL(string: "https://faq.altstore.io/getting-started/error-codes")!
var components = URLComponents(url: baseURL, resolvingAgainstBaseURL: false)!
let query = [loggedError.domain, "\(loggedError.error.displayCode)"].joined(separator: "+")