Skip to content

Commit

Permalink
Merge pull request #8 from kanazawarb/fix-list-command-condition
Browse files Browse the repository at this point in the history
抽出するエントリの状態の誤りを修正する
  • Loading branch information
muryoimpl authored Jan 19, 2024
2 parents 28a5ac7 + 5082575 commit 03afbab
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion command.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ function doPost(e) {
for (let i = 0; i < maxRowSize; i++) {
if (!entries[i][index.DATE]) break;
if (entries[i][index.STATUS] !== status.UNORDERED) continue;
if (entries[i][index.STATUS] !== status.DELIMITED) continue;

const name = entries[i][index.NAME];
const title = entries[i][index.TITLE];
Expand Down

0 comments on commit 03afbab

Please sign in to comment.