Nikola

Results 40 comments of Nikola

I am having same problem. Rotations are wrong and trying to figure out why. It would be great if author has something to say about this.

I have fixed this by adding: .drum{ height: 25.3px !important; }

Here is answer: https://github.com/RicoSuter/NSwag/issues/3441#issuecomment-906494763 Close issue?

In src/converse-omemo.js line 566: ``` const trusted = this.get('identity_key'+identifier); console.log("-------------------------------------------------------------------------------------"); console.log(identifier); --> jid of user that I am trying to send message console.log(identity_key); --> ArrayBuffer console.log(trusted); -> this is empty...

Further more: Line 567: ``` if (trusted === undefined) { return Promise.resolve(true); } ``` If i change to: ``` if (trusted === undefined || trusted === "") { return Promise.resolve(true);...

``` console.log("-----------------------------------------------------------") console.log(identifier) --> [email protected] console.log(address) --> libsignal.SignalProtocolAddress {getName: ƒ, getDeviceId: ƒ, toString: ƒ, equals: ƒ} console.log('identity_key'+address.getName()) --> identity_keychrome@localhost console.log(existing) --> "" console.log(u.arrayBufferToBase64(identity_key)) --> "" console.log("-----------------------------------------------------------") ``` `if (existing &&...

I gave up on conversejs and wrote my own client.

@Ku4nCheang can you please paste your webpack config? Your suggestion did not work for me.