Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhou26 authored Apr 4, 2024
1 parent 87e2af7 commit 94fad92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function getNextCookie() {
while (attempts < cookies.length) {
const cookieValue = cookies[currentCookieIndex];
if (!invalidCookies.includes(cookieValue)) {
const cookie = dl_session=${cookieValue};
const cookie = `dl_session=${cookieValue}`;
currentCookieIndex = (currentCookieIndex + 1) % cookies.length;
return cookie;
}
Expand Down

0 comments on commit 94fad92

Please sign in to comment.