@danielriera unfortunately latest update does not fix the issue, we also experience endless loop and “PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 262144 bytes)” in the end.
We tried to fix it on our own and updated line 277 like this
OLD: if($iteration == $daysToAdd) {
NEW: if($iteration >= $daysToAdd) {
Now plugin is working again, please consider this in next release ??