Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3vcloud committed May 18, 2024
1 parent 1e5bedb commit 85a1247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GWToolboxdll/Modules/SalvageInfoModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ namespace {
return nullptr;
auto found = salvage_info_by_single_item_name.find(single_item_name);
// If the item does not exist, or it exists but the fetching failed and a timeout has passed, attempt to fetch salvage info
if (found != salvage_info_by_single_item_name.end()) {
if (found == salvage_info_by_single_item_name.end()) {
// Need to fetch info for this item.
auto salvage_info = new SalvageInfo();
salvage_info->en_name.language(GW::Constants::Language::English);
Expand Down

0 comments on commit 85a1247

Please sign in to comment.