Loading CHANGES.md +15 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,9 @@ Version 0.14.2 To be released. - Fixed an incompatibility with Meta's [Threads] where sent activities had not been verified by their inbox. [[#125]] Version 0.14.1 -------------- Loading Loading @@ -116,6 +119,18 @@ Released on August 27, 2024. [#115]: https://github.com/dahlia/fedify/issues/115 Version 0.13.3 -------------- Released on August 30, 2024. - Fixed an incompatibility with Meta's [Threads] where sent activities had not been verified by their inbox. [[#125]] [Threads]: https://www.threads.net/ [#125]: https://github.com/dahlia/fedify/issues/125 Version 0.13.2 -------------- Loading src/sig/http.ts +1 −1 Original line number Diff line number Diff line Loading @@ -34,7 +34,7 @@ export async function signRequest( } if (!headers.has("Digest") && body != null) { const digest = await crypto.subtle.digest("SHA-256", body); headers.set("Digest", `sha-256=${encodeBase64(digest)}`); headers.set("Digest", `SHA-256=${encodeBase64(digest)}`); } if (!headers.has("Date")) { headers.set("Date", new Date().toUTCString()); Loading Loading
CHANGES.md +15 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,9 @@ Version 0.14.2 To be released. - Fixed an incompatibility with Meta's [Threads] where sent activities had not been verified by their inbox. [[#125]] Version 0.14.1 -------------- Loading Loading @@ -116,6 +119,18 @@ Released on August 27, 2024. [#115]: https://github.com/dahlia/fedify/issues/115 Version 0.13.3 -------------- Released on August 30, 2024. - Fixed an incompatibility with Meta's [Threads] where sent activities had not been verified by their inbox. [[#125]] [Threads]: https://www.threads.net/ [#125]: https://github.com/dahlia/fedify/issues/125 Version 0.13.2 -------------- Loading
src/sig/http.ts +1 −1 Original line number Diff line number Diff line Loading @@ -34,7 +34,7 @@ export async function signRequest( } if (!headers.has("Digest") && body != null) { const digest = await crypto.subtle.digest("SHA-256", body); headers.set("Digest", `sha-256=${encodeBase64(digest)}`); headers.set("Digest", `SHA-256=${encodeBase64(digest)}`); } if (!headers.has("Date")) { headers.set("Date", new Date().toUTCString()); Loading