Fixed some encoding errors.

This commit is contained in:
Max
2021-05-04 19:45:00 -05:00
parent 32399a692c
commit 2e02c2e7ef
5 changed files with 25 additions and 7 deletions

View File

@ -22,6 +22,9 @@ namespace RobloxFiles.Tokens
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
{
if (!prop.HasRawBuffer)
return;
byte[] data = prop.RawBuffer;
string value = Convert.ToBase64String(data);