diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-14 15:07:47 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-05-14 15:07:47 +0200 |
commit | 60d713b82fcc6b17858dd4975601ee67177a9313 (patch) | |
tree | 548893df40087a6a1cc7f0bc9bbfd993f0428a56 /MatrixRoomUtils.Core | |
parent | Add state cache (diff) | |
download | MatrixUtils-60d713b82fcc6b17858dd4975601ee67177a9313.tar.xz |
Local changes
Diffstat (limited to 'MatrixRoomUtils.Core')
-rw-r--r-- | MatrixRoomUtils.Core/Room.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixRoomUtils.Core/Room.cs b/MatrixRoomUtils.Core/Room.cs index 3ef6ffa..64db03d 100644 --- a/MatrixRoomUtils.Core/Room.cs +++ b/MatrixRoomUtils.Core/Room.cs @@ -37,7 +37,7 @@ public class Room { if(RuntimeCache.GenericResponseCache[cache_key][url].ExpiryTime > DateTime.Now) { - Console.WriteLine($"[:3] Found cached state: {RuntimeCache.GenericResponseCache[cache_key][url].Result}"); + // Console.WriteLine($"[:3] Found cached state: {RuntimeCache.GenericResponseCache[cache_key][url].Result}"); return (JsonElement?)RuntimeCache.GenericResponseCache[cache_key][url].Result; } else |