mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
Fix boodlegrid use of set_children
This commit is contained in:
parent
4a4305e7e6
commit
584c0ed487
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user