Got to about 65 minutes of a match thread and the commentary wouldn't save/process because of an error.
The issue is that the QUTOA_BYTES_PER_ITEM quota is 4096 and storing anything bigger than this will not work and as such the commentary tool function just returned false.
Solution (temporary):
In the Match Thread post, delete the commentary bookends ([](#rmt-commentary-full-start)...[](#rmt-commentary-full-end)
Add line afterward with the {{FULL_COMMENTARY}} macro
Delete all preexisting commentary lines in the extension (note: as of 20180121@1808 the "reset data" button on the Updates tab isn't functional so this is a frustrating process)
Continue from where you left off and the commentary will append
Solution (permanent) is to create a sync function for retrieving data from and saving data to local storage that splits up the data into chunks using the browser's QUOTA_BYTES_PER_ITEM.
Got to about 65 minutes of a match thread and the commentary wouldn't save/process because of an error.
The issue is that the
QUTOA_BYTES_PER_ITEM
quota is4096
and storing anything bigger than this will not work and as such the commentary tool function just returned false.Solution (temporary):
[](#rmt-commentary-full-start)
...[](#rmt-commentary-full-end)
{{FULL_COMMENTARY}}
macroSolution (permanent) is to create a sync function for retrieving data from and saving data to local storage that splits up the data into chunks using the browser's
QUOTA_BYTES_PER_ITEM
.Example here.