From 584c0ed487d7e4b774bff29e6a79b33f931f13c2 Mon Sep 17 00:00:00 2001
From: david-sarah <david-sarah@jacaranda.org>
Date: Mon, 25 Jan 2010 22:34:14 -0800
Subject: [PATCH] Fix boodlegrid use of set_children

---
 misc/boodlegrid.tac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/misc/boodlegrid.tac b/misc/boodlegrid.tac
index 18530dc0..d92c03f6 100644
--- a/misc/boodlegrid.tac
+++ b/misc/boodlegrid.tac
@@ -79,7 +79,8 @@ class Listener:
             #self.sound("mech/metal-clash.aiff")
         if ("web: %(clientip)s" in format
             and m.get("method") == "POST"
-            and "t=set_children" in m.get("uri", "")):
+            and ("t=set_children" in m.get("uri", "")       # FIXME: may give false-positives
+                 or "t=set-children" in m.get("uri", ""))):
             self.sound("mech/clock-clang.aiff")
 
         # generic messages
-- 
2.45.2