Skip to content

Commit

Permalink
💄Fixed nextPage condition
Browse files Browse the repository at this point in the history
  • Loading branch information
shepilov committed Jul 12, 2024
1 parent dff0be8 commit 8457816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdrive/backend/node/src/services/documents/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export const addDriveItemToArchive = async (
);
}
nextPage = items.nextPage?.page_token;
} while (nextPage > "");
} while (nextPage);
return;
}
};
Expand Down

0 comments on commit 8457816

Please sign in to comment.