Skip to content

Commit 3405cdd

Browse files
committed
Simplify verification URL to avoid issues with Git backend changes
1 parent 1542b1e commit 3405cdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/DolphinQt/ProjectPlus/DownloadWorker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void DownloadWorker::startDownload()
3636

3737
// Check if the final URL is the expected GitHub objects CDN
3838
std::string final_url = httpRequest.GetFinalUrl();
39-
if (final_url.find("objects.githubusercontent.com") == std::string::npos) {
39+
if (final_url.find("githubusercontent.com") == std::string::npos) {
4040
emit errorOccurred(QStringLiteral("Did not reach the expected GitHub objects URL. Final URL: %1").arg(QString::fromStdString(final_url)));
4141
return;
4242
}

0 commit comments

Comments
 (0)