Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -129,7 +129,8 @@ async function handleEvent(event) { | ... | @@ -129,7 +129,8 @@ async function handleEvent(event) { |
129 | resultm+=songList[i].singer+", "+songList[i].song+"\n"; | 129 | resultm+=songList[i].singer+", "+songList[i].song+"\n"; |
130 | } | 130 | } |
131 | } | 131 | } |
132 | - client.replyMessage(event.replyToken,resultm).then(resolve).catch(reject); | 132 | + var result = { type: 'text', text:resultm}; |
133 | + client.replyMessage(event.replyToken,result).then(resolve).catch(reject); | ||
133 | 134 | ||
134 | }); | 135 | }); |
135 | }); | 136 | }); | ... | ... |
-
Please register or login to post a comment