diff options
| author | JosJuice <josjuice@gmail.com> | 2026-06-22 08:29:56 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2026-06-22 08:36:44 +0200 |
| commit | 47040a183428e8e6e2a5c8c28d8aa0b4d632d1cd (patch) | |
| tree | 3d35a3ef1457358bc4dd816bd11ba42b0d45a988 /Source/Core/DiscIO | |
| parent | d202fd07d2a0a244fa43941fd80ec9aa4fa05476 (diff) | |
Don't send Dolphin version in user agent to Redump
When we added the RetroAchievements integration, we had a discussion
about whether sending version information in the user agent was fine
from a privacy standpoint. We reached the conclusion that it was okay,
but it was conditional on the website having a privacy policy. Neither
incarnation of Redump has that, and Redump also never asked us to send
version information like RetroAchievements did, so let's use a user
agent that just says "Dolphin" when connecting to Redump.
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index d7956fb617..2944c31272 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -128,7 +128,7 @@ RedumpVerifier::DownloadStatus RedumpVerifier::DownloadDatfile(const std::string const std::optional<std::vector<u8>> result = request.Get("https://redump.info/datfile/" + system + "/serial,version", - {{"User-Agent", Common::GetScmRevStr()}}); + {{"User-Agent", Common::GetEmulatorName()}}); const std::string output_path = GetPathForSystem(system); |
