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 2c1b275 commit 0c86fbcCopy full SHA for 0c86fbc
functions/index.js
@@ -50,8 +50,8 @@ app.intent('actions.intent.MAIN', (conv) => {
50
});
51
52
app.intent('actions.intent.TEXT', (conv, input) => {
53
- shiritori.loaded.then(() => {
54
- shiritori.interact(dict, input, conv.data.used)
+ return shiritori.loaded.then(() => {
+ return shiritori.interact(dict, input, conv.data.used)
55
.then(result => {
56
conv.data.used.unshift(input);
57
conv.data.used.unshift(result.word);
0 commit comments