This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository terminology.

View the commit online.

commit 9c51400e82be7842f5a63de55c7138c5c9574c1e
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Aug 17 14:43:51 2025 +0100

    escapes: edje - fix signal sending to find channel id
    
    fixed edje escapes to send back channels - double not wrong!
    
    fixes #23
    
    @fix
---
 src/bin/termio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termio.c b/src/bin/termio.c
index d4540393..b5017e83 100644
--- a/src/bin/termio.c
+++ b/src/bin/termio.c
@@ -1978,7 +1978,7 @@ _block_edje_signal_cb(void *data,
    if ((!blk->chid) || (!sd->cur_chids)) return;
    EINA_LIST_FOREACH(sd->cur_chids, l, chid)
      {
-        if (!(!strcmp(blk->chid, chid))) break;
+        if (!strcmp(blk->chid, chid)) break;
         chid = NULL;
      }
    if (!chid) return;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to