mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-09 12:01:44 +00:00
fixed ambiguous operator overload
This commit is contained in:
parent
4765f28f9f
commit
05eec197c6
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ void DownloadCheatsPage::GetBuildIDFromFile()
|
|||
|
||||
std::string version_str = std::to_string(this->version);
|
||||
if (versions_json.find(version_str) != versions_json.end()) {
|
||||
this->bid = versions_json[version_str];
|
||||
this->bid = versions_json.at(version_str).get<std::string>();
|
||||
}
|
||||
else {
|
||||
this->bid = "";
|
||||
|
|
Loading…
Reference in a new issue