Load generic property chunks

This commit is contained in:
Jarrod Doyle 2024-08-25 13:56:28 +01:00
parent 8aa1c7c4bc
commit 501f27a721
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ public class DbFile
"P$RenderTyp" => new PropertyChunk<PropRenderType>(),
"LD$MetaProp" => new LinkDataMetaProp(),
_ when entryName.StartsWith("L$") => new LinkChunk(),
_ when entryName.StartsWith("P$") => new PropertyChunk<PropGeneric>(),
_ => new GenericChunk(),
};
}