summaryrefslogtreecommitdiff
path: root/content/handlers
diff options
context:
space:
mode:
Diffstat (limited to 'content/handlers')
-rw-r--r--content/handlers/html/html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index c7a9afebd..d9fe904c0 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -285,9 +285,11 @@ html_proceed_to_done(html_content *html)
}
break;
case CONTENT_STATUS_DONE:
+ /* fallthrough */
+ case CONTENT_STATUS_LOADING:
return NSERROR_OK;
default:
- NSLOG(netsurf, ERROR, "Content status unexpectedly not READY/DONE");
+ NSLOG(netsurf, ERROR, "Content status unexpectedly not LOADING/READY/DONE");
break;
}
return NSERROR_UNKNOWN;