Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
megustalol committed May 9, 2024
1 parent 3644977 commit d1ac5a9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/api/layers/sender.layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export class SenderLayer extends ListenerLayer {
filename,
caption,
quotedMessageId,
isViewOnce,
isViewOnce
);
}

Expand All @@ -243,7 +243,7 @@ export class SenderLayer extends ListenerLayer {
caption?: string,
quotedMessageId?: string,
isViewOnce?: boolean,
mentionedList?: any,
mentionedList?: any
) {
let mimeType = base64MimeType(base64);

Expand Down Expand Up @@ -295,7 +295,15 @@ export class SenderLayer extends ListenerLayer {
sendMsgResult: await result.sendMsgResult,
};
},
{ to, base64, filename, caption, quotedMessageId, isViewOnce, mentionedList }
{
to,
base64,
filename,
caption,
quotedMessageId,
isViewOnce,
mentionedList,
}
);

return result;
Expand Down

0 comments on commit d1ac5a9

Please sign in to comment.