Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
은승우
2019-12-05 22:27:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6ee9822b366dbf5ef10a3e4e8444c97a967ee051
6ee9822b
1 parent
4fc6b81b
add result
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
concert.js
concert.js
View file @
6ee9822
...
...
@@ -108,7 +108,7 @@ function handleEvent(event) {
else
if
(
0
<
event
.
message
.
text
.
substr
(
0
,
2
)
*
1
&&
event
.
message
.
text
.
substr
(
0
,
2
)
*
1
<
27
){
var
selectnum
=
(
event
.
message
.
text
.
substr
(
0
,
2
)
*
1
);
var
result
=
{
type
:
'text'
,
text
:
''
};
if
(
selectnum
>=
0
||
selectnum
<=
27
){
result
.
text
=
'목록에 존재하지 않는 콘서트입니다.'
;
client
.
replyMessage
(
event
.
replyToken
,
result
).
then
(
resolve
).
catch
(
reject
);
...
...
Please
register
or
login
to post a comment