Skip to content

Commit

Permalink
[#34] Fixing wrong column order for "history" operation.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomanuel committed Mar 26, 2021
1 parent 0c02825 commit 9565db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/do-historical-data.gs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ function BinDoHistoricalData() {
parseFloat(d[2]),
parseFloat(d[3]),
parseFloat(d[4]),
new Date(parseInt(d[5])),
parseFloat(d[6]),
new Date(parseInt(d[6])),
parseFloat(d[5]),
parseInt(d[7])
];
return rows.concat([row]);
Expand Down

0 comments on commit 9565db7

Please sign in to comment.