about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/Spec
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-09 07:09:57 +0200
committerRory& <root@rory.gay>2025-05-09 07:09:57 +0200
commit51ff4a3b95ab38dd46c88f4e5482bf78449bb88c (patch)
treee25789fdf98248b22da3e0a498a262c9f31c86d5 /LibMatrix.EventTypes/Spec
parentVerbosity (diff)
downloadLibMatrix-51ff4a3b95ab38dd46c88f4e5482bf78449bb88c.tar.xz
msc4222 fixes
Diffstat (limited to 'LibMatrix.EventTypes/Spec')
-rw-r--r--LibMatrix.EventTypes/Spec/IgnoredUserListEventContent.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/LibMatrix.EventTypes/Spec/IgnoredUserListEventContent.cs b/LibMatrix.EventTypes/Spec/IgnoredUserListEventContent.cs

index 3643b8c..59e17c9 100644 --- a/LibMatrix.EventTypes/Spec/IgnoredUserListEventContent.cs +++ b/LibMatrix.EventTypes/Spec/IgnoredUserListEventContent.cs
@@ -16,12 +16,16 @@ public class IgnoredUserListEventContent : EventContent { [JsonExtensionData] public Dictionary<string, object>? AdditionalData { get; set; } = []; - public T GetAdditionalData<T>(string key) { + public T? GetAdditionalData<T>(string key) where T : class { if (AdditionalData == null || !AdditionalData.TryGetValue(key, out var value)) - throw new KeyNotFoundException($"Key '{key}' not found in AdditionalData."); + return null; + if (value is T tValue) return tValue; - throw new InvalidCastException($"Value for key '{key}' cannot be cast to type '{typeof(T)}'. Cannot continue."); + if (value is JsonElement jsonElement) + return jsonElement.Deserialize<T>(); + + throw new InvalidCastException($"Value for key '{key}' ({value.GetType()}) cannot be cast to type '{typeof(T)}'. Cannot continue."); } } } \ No newline at end of file