[backend/federation] Fix typo causing confusing log messages in ActivityHandlerService
This commit is contained in:
parent
0e8aa8963c
commit
dd8a59db13
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class ActivityHandlerService(
|
|||
|
||||
if (new Uri(activity.Actor.Id).Host != new Uri(activity.Id).Host)
|
||||
throw GracefulException
|
||||
.UnprocessableEntity($"Activity identifier ({activity.Actor.Id}) host doesn't match actor identifier ({activity.Id}) host");
|
||||
.UnprocessableEntity($"Activity identifier ({activity.Id}) host doesn't match actor identifier ({activity.Actor.Id}) host");
|
||||
if (resolvedActor.Host == null || resolvedActor.Uri == null)
|
||||
throw new Exception("resolvedActor.Host and resolvedActor.Uri must not be null at this stage");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue