summaryrefslogtreecommitdiffstats
path: root/module/web/api_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/api_app.py')
-rw-r--r--module/web/api_app.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/module/web/api_app.py b/module/web/api_app.py
index 61be8b510..25b9f7d3d 100644
--- a/module/web/api_app.py
+++ b/module/web/api_app.py
@@ -64,6 +64,8 @@ def callApi(func, *args, **kwargs):
result = getattr(PYLOAD, func)(*[literal_eval(x) for x in args],
**dict([(x, literal_eval(y)) for x, y in kwargs.iteritems()]))
+ if result is None: result = True
+
return json.dumps(result, cls=TBaseEncoder)