Skip to content

Commit

Permalink
fixed paintseed capitalization, fixes #76
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyszabo94 committed Oct 14, 2019
1 parent e1a75d0 commit 7b6c2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/chrome/js/background_scripts/messaging.js
Expand Up @@ -75,7 +75,7 @@ chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
floatInfo = result.floatCache[assetid].floatInfo;
floatCacheAssetIDs.push(assetid);
}
let patternInfo = floatInfo !== null ? getPattern(market_hash_name, floatInfo.paintSeed) : null;
let patternInfo = (floatInfo !== null) ? getPattern(market_hash_name, floatInfo.paintseed) : null;

if (result.itemPricing) price = getPrice(market_hash_name, dopplerInfo, prices, result.pricingProvider, result.exchangeRate, result.currency);
else{price = {price: '', display: ''}}
Expand Down

0 comments on commit 7b6c2ad

Please sign in to comment.