We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986f64a commit 71f78e4Copy full SHA for 71f78e4
src/typed.jl
@@ -105,15 +105,15 @@ macro message_dispatcher(name, body)
105
106
if context===nothing
107
if $(esc(i.args[2])) isa RequestType
108
- res = $(esc(i.args[3]))(x, params, msg.token)
+ res = $(esc(i.args[3]))(params, msg.token)
109
else
110
- res = $(esc(i.args[3]))(x, params)
+ res = $(esc(i.args[3]))(params)
111
end
112
113
114
- res = $(esc(i.args[3]))(x, params, context, msg.token)
+ res = $(esc(i.args[3]))(params, context, msg.token)
115
116
- res = $(esc(i.args[3]))(x, params, context)
+ res = $(esc(i.args[3]))(params, context)
117
118
119
0 commit comments