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 0f8380b773c79a2a226aeffa224b8810211acb03
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Aug 18 09:18:50 2025 +0100
escapes: edje -> fix message handling to find right channel id
like 9c51400e82be7842f5a63de55c7138c5c9574c1e
@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 b5017e83..5202adc4 100644
--- a/src/bin/termio.c
+++ b/src/bin/termio.c
@@ -2023,7 +2023,7 @@ _block_edje_message_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.