Fixes incorrect “Search FAQ” URL in Error Log

This commit is contained in:
Riley Testut
2022-10-26 18:09:15 -05:00
committed by Magesh K
parent 531f8b5a0d
commit 583226392c

View File

@@ -253,7 +253,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: "+")