diff options
Diffstat (limited to 'klippy/webhooks.py')
-rw-r--r-- | klippy/webhooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/webhooks.py b/klippy/webhooks.py index 322f61c4..118894cd 100644 --- a/klippy/webhooks.py +++ b/klippy/webhooks.py @@ -393,7 +393,7 @@ class QueryStatusHelper: cres = {} for ri in req_items: rd = res.get(ri, None) - if not callable(rd) and (is_query or rd != lres.get(ri)): + if is_query or rd != lres.get(ri): cres[ri] = rd if cres or is_query: cquery[obj_name] = cres |