Commit 0d17c4a2 by asfdfdfd

Explicit 'where' parameter check in Push

Without this check empty 'where' missed from final request body.
parent ba9b2f65
......@@ -25,7 +25,7 @@ class Push(ParseResource):
@classmethod
def _send(cls, data, where=None, **kw):
if where:
if where != None:
kw['where'] = where
# allow channels to be specified even if "where" is as well
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment