From d900cfb4226d3a5bbe76a20d6820d1979513b7a4 Mon Sep 17 00:00:00 2001
From: Recolic Keghart <root@recolic.net>
Date: Sun, 31 Oct 2021 01:37:50 +0800
Subject: [PATCH] reformat code

---
 background.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/background.js b/background.js
index e185e2a..136b8a0 100644
--- a/background.js
+++ b/background.js
@@ -265,7 +265,6 @@ function rewriteResponseHeader(e) {
             header.name.toLowerCase() === "set-cookie" && 
             header.value.toLowerCase().trim().startsWith(to_modify.header_name.toLowerCase()+"=")
         );
-
         let new_header_value = set_cookie_modify_cookie_value(header_cookie === undefined ? "" : header_cookie.value, to_modify.header_name, to_modify.header_value);
         if (header_cookie === undefined) {
           log("SimpleModifyHeaders.Warning: you're using cookie_add_or_modify in Response. While adding new cookie in response, this plugin only generates `Set-Cookie: cookie-name=cookie-value `, without ANY additional attributes. Add a `Set-Cookie` header if you need them. ");
-- 
GitLab