We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02a1f6 commit 972c283Copy full SHA for 972c283
lib/client.ts
@@ -15,22 +15,22 @@ export default class Client {
15
16
public pushMessage(to: string, messages: Line.Message | Line.Message[]): Promise<any> {
17
return this.post(URL.push, {
18
- to,
19
messages: toArray(messages),
+ to,
20
});
21
}
22
23
public replyMessage(replyToken: string, messages: Line.Message | Line.Message[]): Promise<any> {
24
return this.post(URL.reply, {
25
- replyToken,
26
+ replyToken,
27
28
29
30
public multicast(to: string[], messages: Line.Message | Line.Message[]): Promise<any> {
31
return this.post(URL.multicast, {
32
33
34
35
36
0 commit comments