From fef406d7efd7d8d5d49e49951da802280a3d43b6 Mon Sep 17 00:00:00 2001 From: Christopher Date: Sat, 21 Mar 2020 18:37:20 -0500 Subject: [PATCH] fix backwards args for invocation handling --- lib/roles/callee.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.45.3