From c09920793787daeeb9aab9eb53aaf15e9c883326 Mon Sep 17 00:00:00 2001 From: Silent YANG Date: Sun, 25 Feb 2024 16:13:48 +0800 Subject: [PATCH] update --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 49d0716..571c329 100644 --- a/app.py +++ b/app.py @@ -23,7 +23,7 @@ def lol(): if func == 0: r.set(_uuid, _cache, 600) else: - _cache = r.get(_uuid) + _cache = str(r.get(_uuid)) return jsonify({'code': 200, 'uuid': _uuid, 'cache': _cache}) @app.route("/pass", methods=['POST'])