From 8f66c1d323fbccb98de26722cdc52c5fbf930ace Mon Sep 17 00:00:00 2001 From: muryoimpl Date: Fri, 19 Jan 2024 17:43:04 +0900 Subject: [PATCH 1/2] =?UTF-8?q?delimit=E5=86=85=E3=81=AE=E5=80=A4=E3=82=BB?= =?UTF-8?q?=E3=83=83=E3=83=88=E3=81=AE=E9=96=A2=E6=95=B0=E5=90=8D=E3=81=AE?= =?UTF-8?q?=E8=AA=A4=E3=82=8A=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.js b/command.js index 2e6cea0..65e2265 100644 --- a/command.js +++ b/command.js @@ -280,7 +280,7 @@ function doPost(e) { startRowNum + i, 5, 1, - ).setValues(status.DELIMITED) + ).setValue(status.DELIMITED) } return ContentService.createTextOutput(messages.delimit_time); From f347d03bd12691a4959f54a52f42879a8b155f77 Mon Sep 17 00:00:00 2001 From: muryoimpl Date: Fri, 19 Jan 2024 17:46:59 +0900 Subject: [PATCH 2/2] =?UTF-8?q?delimit=20=E5=AE=9F=E8=A1=8C=E6=99=82?= =?UTF-8?q?=E3=81=AE=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC=E3=82=B8=E3=81=AF?= =?UTF-8?q?=E7=9A=86=E3=81=AB=E8=A6=8B=E3=81=88=E3=82=8B=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- command.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/command.js b/command.js index 65e2265..975b24a 100644 --- a/command.js +++ b/command.js @@ -283,7 +283,8 @@ function doPost(e) { ).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);