diff --git a/couchpotato/core/helpers/request.py b/couchpotato/core/helpers/request.py index 0ac84ef8..c2249796 100644 --- a/couchpotato/core/helpers/request.py +++ b/couchpotato/core/helpers/request.py @@ -32,6 +32,8 @@ def getParams(params): current = current[item] else: temp[param] = toUnicode(unquote(value)) + if temp[param].lower() in ['true', 'false']: + temp[param] = temp[param].lower() != 'false' return dictToList(temp)