From 220608e4442241d7f60b9750279bedd90d799d7d Mon Sep 17 00:00:00 2001
From: Thomas Kluyver <thomas@kluyver.me.uk>
Date: Thu, 17 Nov 2022 13:25:13 +0000
Subject: [PATCH] Fix storing result

---
 calparrot/db.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/calparrot/db.py b/calparrot/db.py
index 22530ca..003f058 100644
--- a/calparrot/db.py
+++ b/calparrot/db.py
@@ -33,8 +33,8 @@ class ResponsesDB:
     def add_result(self, url, req_body, status, reason, headers, body):
         with self.conn:
             self.conn.execute(
-                "UPDATE responses SET status=?, reason=?, headers=?, body=? WHERE url=?",
-                (status, reason, headers, body, url)
+                "UPDATE responses SET status=?, reason=?, headers=?, body=? WHERE url=? AND req_body=?",
+                (status, reason, headers, body, url, req_body)
             )
 
     def get(self, url, req_body):
-- 
GitLab