From 34cea00ae2fb4c08381faf9b95d9f4b5baa1f45b Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Wed, 13 Sep 2023 13:45:53 +0200 Subject: [PATCH] Fix hidden invalid character --- .../berry_matter/src/embedded/Matter_Plugin_1_Root.be | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libesp32/berry_matter/src/embedded/Matter_Plugin_1_Root.be b/lib/libesp32/berry_matter/src/embedded/Matter_Plugin_1_Root.be index ea65a5c11..6324ce3f5 100644 --- a/lib/libesp32/berry_matter/src/embedded/Matter_Plugin_1_Root.be +++ b/lib/libesp32/berry_matter/src/embedded/Matter_Plugin_1_Root.be @@ -183,7 +183,7 @@ class Matter_Plugin_Root : Matter_Plugin return tlv_solo.set(TLV.U1, fabric_actice) # number of active fabrics elif attribute == 0x0004 # ---------- TrustedRootCertificates / list[octstr] ---------- # TODO - elif attribute == 0x0005 # ---------- Current­ FabricIndex / u1 ---------- + elif attribute == 0x0005 # ---------- Current FabricIndex / u1 ---------- var fab_index = session._fabric.get_fabric_index() if fab_index == nil fab_index = 0 end # if PASE session, then the fabric index should be zero return tlv_solo.set(TLV.U1, fab_index) # number of active sessions @@ -716,4 +716,4 @@ class Matter_Plugin_Root : Matter_Plugin end end matter.Plugin_Root = Matter_Plugin_Root - \ No newline at end of file +