فهرست منبع

fix: match macro variables

Stefan Strigler 3 سال پیش
والد
کامیت
680a4362d1
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      apps/emqx_bridge/src/emqx_bridge_api.erl

+ 2 - 2
apps/emqx_bridge/src/emqx_bridge_api.erl

@@ -50,8 +50,8 @@
 
 -define(BRIDGE_NOT_FOUND(Type, Name),
     ?NOT_FOUND(
-        <<"Bridge lookup failed: bridge named '", BridgeName/binary, "' of type ",
-            (atom_to_binary(BridgeType))/binary, " does not exist.">>
+        <<"Bridge lookup failed: bridge named '", Name/binary, "' of type ",
+            (atom_to_binary(Type))/binary, " does not exist.">>
     )
 ).