diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index fb5f116..13be2d1 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -7,6 +7,9 @@
+
+
+
@@ -32,6 +35,13 @@
+
+
+
+
+
+
+
@@ -61,7 +71,6 @@
-
diff --git a/README.md b/README.md
index 7507c3e..a006d2a 100644
--- a/README.md
+++ b/README.md
@@ -75,7 +75,7 @@ Add `?qr=1` to enable QR code generation for paste link.
|Header Key|Description|
|-|-|
-|`content-type`|The media type (MIME) of the data and encoding|
+|`x-content-type`|The media type (MIME) of the data and encoding|
|`x-title`|File's title|
|`x-pass`|Paste's password|
|`x-read-limit`|The maximum access count|
diff --git a/src/index.ts b/src/index.ts
index cee9e99..9531869 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -508,10 +508,10 @@ async function get_paste_info(uuid: string, descriptor: PasteIndexEntry, env: En
const qrcode = await res.text();
content += '\n';
content += qrcode;
- content += '\n';
}
}
+ content += '\n';
return new Response(content);
}