Fixes incorrect Search FAQ URL

This commit is contained in:
nythepegasus
2024-05-06 20:15:46 -04:00
committed by ny
parent e2a5e263f4
commit 1a36726361

View File

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