diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-11-01 20:13:34 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-11-01 20:13:34 +0200 |
commit | f9aac7ffcd771bdf457bc0e76a094db909b43ef2 (patch) | |
tree | d17c0f1280ff79b085b1a1016e2facd69c537941 | |
parent | cc5a6e75dd99606dac676cc4e0c547d3f55c9dc2 (diff) | |
download | rspamd-f9aac7ffcd771bdf457bc0e76a094db909b43ef2.tar.gz rspamd-f9aac7ffcd771bdf457bc0e76a094db909b43ef2.zip |
[Fix] Fix 'decoded' value in task:get_header_full()
-rw-r--r-- | src/lua/lua_task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_task.c b/src/lua/lua_task.c index 679e7b002..e686876f7 100644 --- a/src/lua/lua_task.c +++ b/src/lua/lua_task.c @@ -1446,7 +1446,7 @@ rspamd_lua_push_header (lua_State * L, } if (rh->decoded) { - rspamd_lua_table_set (L, "decoded", rh->value); + rspamd_lua_table_set (L, "decoded", rh->decoded); } lua_pushstring (L, "tab_separated"); |