diff options
Diffstat (limited to 'src/lua/lua_task.c')
-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 8e25c3490..1e0e0a147 100644 --- a/src/lua/lua_task.c +++ b/src/lua/lua_task.c @@ -2745,7 +2745,7 @@ lua_task_get_rawbody (lua_State * L) else { /* Push body it it is there */ if (task->msg.len > 0 && task->msg.begin != NULL) { - lua_new_text_task (L, task->msg.begin, task->msg.len, FALSE); + lua_new_text_task (L, task, task->msg.begin, task->msg.len, FALSE); } else { lua_pushnil (L); |