Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이유혁
/
OSS_Project_Chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
이유혁
2019-11-18 09:30:23 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bb00680ff0c916430e9eae3f899bab5c39392bdb
bb00680f
1 parent
7e9f1278
none
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app.js
app.js
View file @
bb00680
...
...
@@ -115,8 +115,8 @@ const receive_result = (options, event) => {
else
{
// 예외처리
result
.
text
=
'언어를 감지할 수 없습니다. \n 번역 언어는 한글 또는 영어만 가능합니다.'
;
client
.
replyMessage
(
event
.
replyToken
,
result
)
.
then
(
resolve
).
catch
(
reject
)
;
reject
(
new
Error
(
"
request is fail
ed"
));
client
.
replyMessage
(
event
.
replyToken
,
result
);
reject
(
new
Error
(
"
language was not detect
ed"
));
}
})
})
...
...
Please
register
or
login
to post a comment