Skip to content

Commit

Permalink
add a commnet
Browse files Browse the repository at this point in the history
  • Loading branch information
jd1378 committed Feb 11, 2021
1 parent 0ab3c6d commit dc3cd97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/econ_item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function getCacheKey(item: OfferItem) {

export function getDescriptionKey(item: OfferItem) {
let key = `${item.classid}`;
if (item.instanceid && item.instanceid != "0") {
if (item.instanceid && item.instanceid != "0") { // intentional non-strict check
key += "_" + item.instanceid;
}
return key;
Expand Down

0 comments on commit dc3cd97

Please sign in to comment.