vault backup: 2023-11-06 20:22:25

This commit is contained in:
Paul Trowbridge 2023-11-06 20:22:25 -05:00
parent 17b3f64be5
commit 78f5afde6f
1 changed files with 1 additions and 1 deletions

2
api.ts
View File

@ -48,7 +48,7 @@ function apply_guidance(doc: any) {
function setAnchors(items, channelFirstChar, v1ds, v0ds, histKey) {
for (let item of items) {
// Update the last_price with the most recent price
const years = Object.keys(item.season);
const years = Object.keys(item.season).map(Number).filter(year => year >= 2020);
if (years.length > 0) {
const recentYear = Math.max(...years.map(Number));
const earlyYear = Math.min(...years.map(Number));