Skip to content

Commit

Permalink
Fix for custom prices table not using new datestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorgullmark committed Oct 25, 2021
1 parent 0a66c9e commit 4bcab53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExilenceNextApp/src/store/priceStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class PriceStore {
return;
}
const prices = leaguePriceSources[0]?.prices;
if (!prices) {
if (!prices || !leaguePriceSources[0]?.pricedFetchedAt) {
return;
}
return filterPrices(
Expand Down

0 comments on commit 4bcab53

Please sign in to comment.