diff --git a/test_server.py b/test_server.py index 916994a..28c13c4 100644 --- a/test_server.py +++ b/test_server.py @@ -28,7 +28,7 @@ async def check_message(): message = data["message"] cid = 123 sid = 123 - results = check_chatfilter(input_str=message, badwords=badwords, goodwords=goodwords, cid=cid, sid=sid) + results = check_chatfilter(input_str=message, badwords=badwords, goodwords=goodwords, cid=cid, gid=sid) return jsonify(results) @app.route("/user", methods=["POST"])