about summary refs log tree commit diff
path: root/LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-05-16 11:46:45 +0200
committerRory& <root@rory.gay>2024-05-16 11:46:45 +0200
commite1f99073f3d9788a4b48d2bb7091e3894dcefa1a (patch)
tree63eaa6ead968ca0fd3f2a85a2b6ae13bab900156 /LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs
parentAdd valid room memberhip values as constants (diff)
downloadLibMatrix-bak-e1f99073f3d9788a4b48d2bb7091e3894dcefa1a.tar.xz
Dont use refs for proxy
Diffstat (limited to 'LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs')
-rw-r--r--LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs b/LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs

index 307a226..83ebf20 100644 --- a/LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs +++ b/LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs
@@ -9,8 +9,8 @@ namespace LibMatrix.Homeservers; public class AuthenticatedHomeserverSynapse : AuthenticatedHomeserverGeneric { public readonly SynapseAdminApiClient Admin; - public AuthenticatedHomeserverSynapse(string serverName, HomeserverResolverService.WellKnownUris wellKnownUris, ref string? proxy, string accessToken) : base(serverName, - wellKnownUris, ref proxy, accessToken) { + public AuthenticatedHomeserverSynapse(string serverName, HomeserverResolverService.WellKnownUris wellKnownUris, string? proxy, string accessToken) : base(serverName, + wellKnownUris, proxy, accessToken) { Admin = new(this); }