Implement read for Null

This commit is contained in:
RunasSudo 2025-04-21 21:47:21 +10:00
parent 6980156e48
commit aec7242e72
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A

View File

@ -205,7 +205,7 @@ class CslaBinaryReader:
return [self.read_int32() for _ in range(length)]
if known_type == CslaKnownTypes.Null.value:
raise NotImplementedError()
return None
if known_type == CslaKnownTypes.StringWithDictionaryKey.value:
system_string = self.read_string()