Skip to content

Commit

Permalink
fix: potential cache corruption
Browse files Browse the repository at this point in the history
  • Loading branch information
vcheckzen committed Oct 30, 2024
1 parent 14c1529 commit 109906a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions back-end-cf/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ async function fetchFiles(path, passwd, skipToken, orderby) {
: undefined;
const children = pageRes.value;

if (orderby) {
orderby = orderby.replace('lastModifiedDateTime', 'time');
}
return JSON.stringify({
parent,
skipToken,
Expand Down

0 comments on commit 109906a

Please sign in to comment.