From 62a5096724e505d893ac9b785cc13dd226aeb8d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Fri, 31 Mar 2023 18:12:01 +0800 Subject: This is what makes cart item removal works --- ord.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ord.c b/ord.c index 1dd8994..5bf341d 100644 --- a/ord.c +++ b/ord.c @@ -14,8 +14,9 @@ void interchange_ord_order(const char *sku, void interchange_ord_remove(const char *name, const char *nextpage, void (*parser)(interchange_response *)) { - request(parser, NULL, &(struct body){ 1 + (nextpage ? 1 : 0), { + request(parser, NULL, &(struct body){ 2 + (nextpage ? 1 : 0), { { name, "0" }, + { "mv_doit", "refresh" }, { "mv_nextpage", nextpage } }}, "%s", "process"); } -- cgit v1.2.3