Ignore negative USD prices

This commit is contained in:
nymkappa 2023-03-01 19:11:03 +09:00
parent d673365a0e
commit 9043d23a03
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -40,7 +40,7 @@ export const MAX_PRICES = {
class PricesRepository {
public async $savePrices(time: number, prices: IConversionRates): Promise<void> {
if (prices.USD === 0) {
if (prices.USD === -1) {
// Some historical price entries have no USD prices, so we just ignore them to avoid future UX issues
// As of today there are only 4 (on 2013-09-05, 2013-0909, 2013-09-12 and 2013-09-26) so that's fine
return;