Skip to content

Commit

Permalink
Merge pull request #9 from kanazawarb/fix-delimit-command
Browse files Browse the repository at this point in the history
delimit コマンドの不具合を修正する
  • Loading branch information
muryoimpl authored Jan 19, 2024
2 parents 03afbab + f347d03 commit 5c33129
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions command.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,11 @@ function doPost(e) {
startRowNum + i,
5,
1,
).setValues(status.DELIMITED)
).setValue(status.DELIMITED)
}

return ContentService.createTextOutput(messages.delimit_time);
const payload = createMessagePayload(messages.delimit_time);
return createPublicTextOutput(payload);
}
default:
return ContentService.createTextOutput(cmd + "\n" + help);
Expand Down

0 comments on commit 5c33129

Please sign in to comment.