fixup logic error in save complete as directed by jmb
This commit is contained in:
parent
28e670f52d
commit
b415c2f9ff
|
@ -435,7 +435,7 @@ static bool save_complete_save_html_objects(save_complete_ctx *ctx,
|
|||
object = html_get_objects(c, &count);
|
||||
|
||||
for (; object != NULL; object = object->next) {
|
||||
if (object->content != NULL || object->box != NULL) {
|
||||
if ((object->content != NULL) && (object->box != NULL)) {
|
||||
if (save_complete_save_html_object(ctx,
|
||||
object->content) == false)
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue