diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-04 20:34:16 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-04 20:34:16 +0200 |
commit | 383f7b633471dedf515907cb8a8752bc5885ae64 (patch) | |
tree | 793225216c9c38be1533e1960166b7b3dd472890 /MatrixRoomUtils.Core/Authentication/MatrixAuth.cs | |
parent | Dark theme, fancier room list (diff) | |
download | MatrixUtils-383f7b633471dedf515907cb8a8752bc5885ae64.tar.xz |
Add room manager, profile caching
Diffstat (limited to 'MatrixRoomUtils.Core/Authentication/MatrixAuth.cs')
-rw-r--r-- | MatrixRoomUtils.Core/Authentication/MatrixAuth.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Core/Authentication/MatrixAuth.cs b/MatrixRoomUtils.Core/Authentication/MatrixAuth.cs index e744c4f..7bcd75f 100644 --- a/MatrixRoomUtils.Core/Authentication/MatrixAuth.cs +++ b/MatrixRoomUtils.Core/Authentication/MatrixAuth.cs @@ -39,6 +39,7 @@ public class MatrixAuth //return token; } + [Obsolete("Migrate to IHomeServer instance")] public static async Task<ProfileResponse> GetProfile(string homeserver, string mxid) => await (await new RemoteHomeServer(homeserver).Configure()).GetProfile(mxid); |