Skip to content
Snippets Groups Projects
Commit 9f49b9f4 authored by syuilo's avatar syuilo
Browse files

fix(backend): HTTP Digestヘッダのアルゴリズム部分に大文字の"SHA-256"しか使えない

Fix #12678
parent 3e256eee
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,7 @@
- Fix: 「みつける」が年越し時に壊れる問題を修正
- Fix: アカウントをブロックした際に、自身のユーザーのページでノートが相手に表示される問題を修正
- Fix: モデレーションログがモデレーターは閲覧できないように修正
- Fix: HTTP Digestヘッダのアルゴリズム部分に大文字の"SHA-256"しか使えない
## 2023.11.1
......
......@@ -138,7 +138,7 @@ export class ActivityPubServerService {
return;
}
const algo = match[1];
const algo = match[1].toUpperCase();
const digestValue = match[2];
if (algo !== 'SHA-256') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment