AskoldMakaruk

Results 4 comments of AskoldMakaruk

@messire try use TelegramClient insted of TLUser. Consider that sessionUserId is path to dat file with session.

@messire You can save dat files in current directory like this: `string fullPathToDat = Directory.GetCurrentDirectory()+"\\filename.dat"` Create .dat: ``` TelegramClient client = new TelegramClient(Api_Id, Api_Hash, new FileSessionStore(), fullPathToDat); await client.ConnectAsync(); string...

Hey, maybe you can provide links to download entitas wihout unity asset store. It's dumb that I have to download 15gb of unity just to get jenny.exe file

The issue persists in version 1.2.0. Here is a simpler example that reproduces the issue. ```rs use anyhow::Result; use serde::{Deserialize, Serialize}; use surrealdb::engine::local::{Db, Mem}; use surrealdb::sql::{Geometry, Id}; use surrealdb::Surreal; #[tokio::main]...