We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1542b1e commit 3405cddCopy full SHA for 3405cdd
Source/Core/DolphinQt/ProjectPlus/DownloadWorker.cpp
@@ -36,7 +36,7 @@ void DownloadWorker::startDownload()
36
37
// Check if the final URL is the expected GitHub objects CDN
38
std::string final_url = httpRequest.GetFinalUrl();
39
- if (final_url.find("objects.githubusercontent.com") == std::string::npos) {
+ if (final_url.find("githubusercontent.com") == std::string::npos) {
40
emit errorOccurred(QStringLiteral("Did not reach the expected GitHub objects URL. Final URL: %1").arg(QString::fromStdString(final_url)));
41
return;
42
}
0 commit comments