Skip to content

Commit

Permalink
fix(missing-messages): linting and bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpShell committed Mar 12, 2024
1 parent 8777f7f commit c264633
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Socket/messages-recv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
const stanza: BinaryNode = ({
tag: 'call',
attrs: {
from: authState.creds.me!,
from: authState.creds.me!.id,
to: callFrom,
},
content: [{
Expand Down Expand Up @@ -160,7 +160,7 @@ export const makeMessagesRecvSocket = (config: SocketConfig) => {
{
tag: 'retry',
attrs: {
count: retryCount,
count: retryCount as any,
id: node.attrs.id.toString(),
t: node.attrs.t.toString(),
v: '1'
Expand Down

0 comments on commit c264633

Please sign in to comment.