You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
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()
The text was updated successfully, but these errors were encountered: