diff options
Diffstat (limited to 'src/lua/lua_html.c')
-rw-r--r-- | src/lua/lua_html.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lua/lua_html.c b/src/lua/lua_html.c index 71578e1a4..739776b01 100644 --- a/src/lua/lua_html.c +++ b/src/lua/lua_html.c @@ -315,6 +315,7 @@ lua_html_push_image (lua_State *L, struct html_image *img) lua_settable (L, -3); lua_pushstring (L, "embedded"); lua_pushboolean (L, img->flags & RSPAMD_HTML_FLAG_IMAGE_EMBEDDED); + lua_settable (L, -3); lua_pushstring (L, "data"); lua_pushboolean (L, img->flags & RSPAMD_HTML_FLAG_IMAGE_DATA); lua_settable (L, -3); |