sdcdsvsdv423

Results 51 comments of sdcdsvsdv423

Airgram has been updated to version `1.8.2`. To install it you need to use the `tdlib-1.8.2` tag: ``` npm install [email protected] ``` As for `tdweb`, the latest version on [npmjs](https://www.npmjs.com/package/tdweb)...

Can you set log level to 3 and check what response is coming from Telegram? Is there any error?

Hello, This is expected behaviour. You can build HTML using the `entities` property of the `FormattedText` object. For `updateNewMessage` you will find it here: `message.content.text.entities` https://airgram.io/api-reference/tdlib-outputs/FormattedText

Hello, This is the same reason as in the issue https://github.com/airgram/airgram/issues/92.

The idea is using `wasm` module in NodeJS (https://github.com/airgram/airgram/issues/36), so I run script from console, not in browser. Should WebAssembly module work in server environment?

As far as I can see, the creation of `ws` client is provided for Node.js. Doesn't it? td_wasm.js#3159: ```js var WebSocketConstructor if (ENVIRONMENT_IS_NODE) {WebSocketConstructor = require('ws')} else if (ENVIRONMENT_IS_WEB) {WebSocketConstructor...

> From Node.js you can use ordinary JSON TDLib interface, for example, see tdl. Client with JSON TDLib interface has already been implemented: [Airgram](https://github.com/airgram/airgram). But there are 2 caveats: -...

I could not see any WebSocket packets in Wareshark log. Do ip addresses `172.29.1.0`, `172.29.2.0` and `172.29.3.0` look correct? ``` [ 3][t 0][1562673517.459000111][IPAddress.cpp:404][!ConnectionCreator] Try to init IP address of pluto.web.telegram.org/apiws_test...

Do you have any idea what is wrong and how to fix it? Maybe I should create a simple repo, so you can check the connection issue?

It would be nice, if the next TDLib release has fully support of `wasm` for NodeJS, then we could use it instead of `ffi-napi` and solve some issues like #643.