Lagrange [release]
Auto-reload without a valid request time
[1mdiff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c[m
[1mindex c953e0f3..947d9d5f 100644[m
[1m--- a/src/ui/documentwidget.c[m
[1m+++ b/src/ui/documentwidget.c[m
[36m@@ -2037,8 +2037,7 @@[m [mstatic iBool handleCommand_DocumentWidget_(iDocumentWidget *d, const char *cmd)[m
}[m
else if (equal_Command(cmd, "document.autoreload")) {[m
if (d->mod.reloadInterval) {[m
[31m- if (isValid_Time(&d->sourceTime) &&[m
[31m- elapsedSeconds_Time(&d->sourceTime) >=[m
[32m+[m[32m if (!isValid_Time(&d->sourceTime) || elapsedSeconds_Time(&d->sourceTime) >=[m
seconds_ReloadInterval_(d->mod.reloadInterval)) {[m
postCommand_Widget(w, "document.reload");[m
}[m