diff options
author | Rory& <root@rory.gay> | 2024-05-16 11:46:45 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-05-16 11:46:45 +0200 |
commit | e1f99073f3d9788a4b48d2bb7091e3894dcefa1a (patch) | |
tree | 63eaa6ead968ca0fd3f2a85a2b6ae13bab900156 /LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs | |
parent | Add valid room memberhip values as constants (diff) | |
download | LibMatrix-e1f99073f3d9788a4b48d2bb7091e3894dcefa1a.tar.xz |
Dont use refs for proxy
Diffstat (limited to 'LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs')
-rw-r--r-- | LibMatrix/Homeservers/AuthenticatedHomeserverSynapse.cs | 4 |
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); } |