Skip to content

Commit

Permalink
fix(ocm): log message
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl committed Nov 17, 2024
1 parent 15f4397 commit 0ca08df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ private function confirmShareEntry(?IIncomingSignedRequest $signedRequest, strin
*/
private function getHostFromFederationId(string $entry): string {
if (!str_contains($entry, '@')) {
throw new IncomingRequestException('entry does not contains @');
throw new IncomingRequestException('entry ' . $entry . ' does not contains @');
}
$rightPart = substr($entry, strrpos($entry, '@') + 1);

Expand Down

0 comments on commit 0ca08df

Please sign in to comment.