From e228016f883809f0e915e7e34a2d50c6b58dd814 Mon Sep 17 00:00:00 2001
From: Recolic Keghart <root@recolic.net>
Date: Sat, 16 Oct 2021 19:23:16 +0800
Subject: [PATCH] Allow modifying cookies

---
 background.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/background.js b/background.js
index 09828a3..bf2f244 100644
--- a/background.js
+++ b/background.js
@@ -103,6 +103,7 @@ function storeInBrowserStorage(item, callback_function) {
  * If key already exists, it modify the value. 
  * If key doesn't exist, it add the key-value pair. 
  * If value is undefined, it delete the key-value pair from cookies. 
+ * Assuming that, the same key SHOULD NOT appear twice in cookies. 
  * Recolic K <root@recolic.net>
  */
 function cookie_keyvalues_set(original_cookies, key, value) {
-- 
GitLab