Skip to content

Commit 1971b92

Browse files
authored
Merge pull request #36 from takker99/fix-link
🐛 論理値が逆だった
2 parents 815369b + f133443 commit 1971b92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest/link.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const readLinksBulk = async (
9393
yield first.value.pages;
9494
let followingId = first.value.followingId;
9595

96-
while (!followingId) {
96+
while (followingId) {
9797
const result = await getLinks(project, { followingId, ...options });
9898

9999
// すでに認証は通っているので、ここでエラーになるはずがない

0 commit comments

Comments
 (0)