jstarpl / nightscout-exporter

A utility to export Nightscout data as CSV or XLSX files
https://jstarpl.github.io/nightscout-exporter/
MIT License
3 stars 6 forks source link

Bug: The 'count' constant needs to be a variable, or be increased #4

Open hummelstrand opened 5 years ago

hummelstrand commented 5 years ago

const count: number = 1000; If the user chooses a date range that results in more than 1,000 data points, the result will be truncated. This constant either needs to be increased to a really large number, or it needs to be calculated dynamically (for example: the number of hours in the date range * 100).