Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
allow userid with space char in federated teams
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl authored and backportbot[bot] committed Sep 8, 2025
commit 1ac65730bdec16750da3c79d961c80ab184fce85
2 changes: 1 addition & 1 deletion lib/Tools/ActivityPub/NCSignature.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private function setIncomingClearSignature(NCSignedRequest $signedRequest): void
throw new SignatureException('missing elements in \'headers\'');
}

$target = strtolower($request->getMethod()) . ' ' . $request->getRequestUri();
$target = strtolower($request->getMethod()) . ' ' . urldecode($request->getRequestUri());
$estimated = ['(request-target): ' . $target];

foreach ($headers as $key) {
Expand Down
Loading