From 2a7aeb0b704ac2d32ee2e940665a54868d955af4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:01:31 +0000 Subject: [PATCH 1/2] Initial plan From 95240b17b38efa6883a3a474d8580649eb46d012 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:04:28 +0000 Subject: [PATCH 2/2] Update TinyPEN Content-Type to application/ld+json Co-authored-by: cubap <1119165+cubap@users.noreply.github.com> --- database/tiny/controller.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/database/tiny/controller.js b/database/tiny/controller.js index 09c9313b..2b9b4d00 100644 --- a/database/tiny/controller.js +++ b/database/tiny/controller.js @@ -98,7 +98,7 @@ class DatabaseController { method: 'post', body: JSON.stringify(query), headers: { - 'Content-Type': 'application/json; charset=utf-8' + 'Content-Type': 'application/ld+json; charset=utf-8' } }) .then(resp => { @@ -129,7 +129,7 @@ class DatabaseController { method: 'post', body: JSON.stringify(data), headers: { - 'Content-Type': 'application/json; charset=utf-8' + 'Content-Type': 'application/ld+json; charset=utf-8' } }) .then(resp => { @@ -160,7 +160,7 @@ class DatabaseController { method: 'put', body: JSON.stringify(data), headers: { - 'Content-Type': 'application/json; charset=utf-8' + 'Content-Type': 'application/ld+json; charset=utf-8' } }) .then(resp => { @@ -190,7 +190,7 @@ class DatabaseController { err_out._dbaction = this.URLS.OVERWRITE const headers = { - 'Content-Type': 'application/json; charset=utf-8' + 'Content-Type': 'application/ld+json; charset=utf-8' } // Add optimistic locking header if __rerum.isOverwritten exists @@ -255,7 +255,7 @@ class DatabaseController { method: 'delete', body: JSON.stringify(data), headers: { - 'Content-Type': 'application/json; charset=utf-8' + 'Content-Type': 'application/ld+json; charset=utf-8' } }) .then(resp => {