回答編集履歴

1

a

2020/11/20 18:00

投稿

papinianus
papinianus

スコア12705

test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  const contentsType = request.events[0].message.type;
12
12
 
13
- if (type !== 'text') return; // テキストメッセージでなかったら無視
13
+ if (contentsType !== 'text') return; // テキストメッセージでなかったら無視
14
14
 
15
15
  const userId = request.events[0].source.userId;
16
16
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  }
44
44
 
45
- const findStatusForUser = (dat,uid, message) => {
45
+ const findStatusForUser = (dat,uid) => {
46
46
 
47
47
  const row = fetchRow(dat,0,uid);
48
48
 
@@ -112,7 +112,7 @@
112
112
 
113
113
  const dat = sheet.getDataRange().getValues();
114
114
 
115
- const previous = findStatusForUser(dat,uid,message);
115
+ const previous = findStatusForUser(dat,uid);
116
116
 
117
117
  const ans = getAnswer(message, previous);
118
118
 
@@ -122,4 +122,6 @@
122
122
 
123
123
  }
124
124
 
125
+
126
+
125
127
  ```