about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-02-28 12:21:22 +0100
committerRory& <root@rory.gay>2026-02-28 12:21:22 +0100
commit1a0f7c22cc1248440db362fd4f2e9ef0ef786813 (patch)
tree3e5af619591214c3491618fbc2f20346287164e7
parentMore federation work (diff)
downloadLibMatrix-1a0f7c22cc1248440db362fd4f2e9ef0ef786813.tar.xz
Fix missing service HEAD master
-rw-r--r--LibMatrix/Services/ServiceInstaller.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibMatrix/Services/ServiceInstaller.cs b/LibMatrix/Services/ServiceInstaller.cs

index 5ffd43a..7f15cd2 100644 --- a/LibMatrix/Services/ServiceInstaller.cs +++ b/LibMatrix/Services/ServiceInstaller.cs
@@ -13,6 +13,7 @@ public static class ServiceInstaller { services.AddSingleton<ClientWellKnownResolver>(); services.AddSingleton<ServerWellKnownResolver>(); services.AddSingleton<SupportWellKnownResolver>(); + services.AddSingleton<PolicyServerWellKnownResolver>(); if (!services.Any(x => x.ServiceType == typeof(WellKnownResolverConfiguration))) services.AddSingleton<WellKnownResolverConfiguration>(); services.AddSingleton<WellKnownResolverService>();