Hi! I try to use your code for parsing Telegram Desktop (1.4.3) on Windows. Is it working for Windows? I constantly get InvalidData, because storageKey always equals 21. Could you help please?
file:Map.cs
class: Map
method: TryParseMap()
var mapStream = new DataStream(mapData);
while (!mapStream.AtEnd)
{
var storageKey = (LocalStorageKey)mapStream.ReadUInt32(); // **here, storageKey = 21**
if (!ReadKey(storageKey, mapStream, storage)) // **ReadKey() doesn't have condition for 21**
return ParsingState.InvalidData;
}
Hi! I try to use your code for parsing Telegram Desktop (1.4.3) on Windows. Is it working for Windows? I constantly get InvalidData, because storageKey always equals 21. Could you help please?
file:Map.cs class: Map method: TryParseMap()