🐛 Ignore content-type in incoming signing

This commit is contained in:
2025-12-30 13:06:50 +08:00
parent d02edbd38d
commit 30cbbf0139

View File

@@ -226,6 +226,10 @@ public class ActivityPubSignatureService(
{
sb.Append(Domain);
}
else if (header == "content-type")
{
continue;
}
else
{
if (context.Request.Headers.TryGetValue(header, out var values))