diff --git a/api/views.py b/api/views.py index 0ef1f5a..9f92aaf 100644 --- a/api/views.py +++ b/api/views.py @@ -435,11 +435,19 @@ class API(object): return dumps({"channels": channels}) - @app.route("/irc/network//channel//", methods=["DELETE"]) + @app.route("/irc/network//channel/", methods=["DELETE"]) @login_required - def irc_network_channel_part(self, request, net, channel): + def irc_network_channel_part(self, request, net): + try: + data = loads(request.content.read()) + except JSONDecodeError: + return "Invalid JSON" + if "channel" not in data: + return dumps({"success": False, "reason": "no channel specified."}) + channel = data["channel"] if net not in main.network.keys(): return dumps({"success": False, "reason": "no such net."}) + print("ABOUT TO PART", channel) parted = chankeep.partSingle(net, channel) if not parted: dumps({"success": False, "reason": "no channels matched."})