mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
Convert last long key to property
This commit is contained in:
@@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Xml;
|
||||
using SabreTools.Data.Models.ArchiveDotOrg;
|
||||
using SabreTools.Text.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
@@ -136,7 +137,7 @@ namespace SabreTools.Serialization.Readers
|
||||
obj.SHA1 = reader.ReadElementContentAsString();
|
||||
break;
|
||||
case "filecount":
|
||||
obj.FileCount = reader.ReadElementContentAsString();
|
||||
obj.FileCount = NumberHelper.ConvertToInt64(reader.ReadElementContentAsString());
|
||||
break;
|
||||
case "format":
|
||||
obj.Format = reader.ReadElementContentAsString();
|
||||
|
||||
Reference in New Issue
Block a user