whatsanalyze icon indicating copy to clipboard operation
whatsanalyze copied to clipboard

max Message Limitations

Open mowolf opened this issue 3 years ago • 3 comments

Bildschirmfoto 2021-03-15 um 20 45 56

The file has a size of 4,2mb (around 250k messages)

mowolf avatar Mar 16 '21 11:03 mowolf

functions/transformChatData.js

line 354 replace:

const minDate = new Date(Math.min.apply(null, this.dates));
const maxDate = new Date(Math.max.apply(null, this.dates));

with:

const sortedDates = this.dates.sort();
const minDate = new Date(sortedDates[0]);
const maxDate = new Date(sortedDates[-1]);

I created a branch, but I can't push to the repo.

I was able to process 175974 messages.

danblackadder avatar Jun 26 '21 21:06 danblackadder

Thanks, will implement that soon!

mowolf avatar Jun 27 '21 14:06 mowolf

Bildschirmfoto 2021-03-15 um 20 45 56

The file has a size of 4,2mb (around 250k messages)

https://github.com/SpiritFour/whatsanalyze/issues/274#issue-832687736

amgdbmc avatar Jul 22 '21 11:07 amgdbmc