From: Christopher Date: Sat, 21 Mar 2020 23:37:20 +0000 (-0500) Subject: fix backwards args for invocation handling X-Git-Url: http://git.entropealabs.com/?a=commitdiff_plain;h=fef406d7efd7d8d5d49e49951da802280a3d43b6;p=wampex.git fix backwards args for invocation handling --- diff --git a/lib/roles/callee.ex b/lib/roles/callee.ex index 54b0fd0..8b34613 100644 --- a/lib/roles/callee.ex +++ b/lib/roles/callee.ex @@ -85,7 +85,7 @@ defmodule Wampex.Roles.Callee do @impl true def handle([@invocation, id, reg_id, dets, arg_l]) do - handle([@invocation, id, dets, reg_id, arg_l, %{}]) + handle([@invocation, id, reg_id, dets, arg_l, %{}]) end @impl true