From a3588222d0dfc927a79fc219131e585d65803358 Mon Sep 17 00:00:00 2001 From: spl0k Date: Tue, 16 Jul 2013 11:53:37 +0200 Subject: [PATCH] We "have" a valid license Some clients stop working after 30 days if the server returns it doesn't have a license. --- api/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/system.py b/api/system.py index d76ee47..3f21af0 100755 --- a/api/system.py +++ b/api/system.py @@ -9,5 +9,5 @@ def ping(): @app.route('/rest/getLicense.view', methods = [ 'GET', 'POST' ]) def license(): - return request.formatter({ 'license': { 'valid': False } }) + return request.formatter({ 'license': { 'valid': True } })