Skip to content

Commit

Permalink
fix issue with website update (#44)
Browse files Browse the repository at this point in the history
* fix issue with website update

* fix issue with website update

* fix issue with website update
  • Loading branch information
Ezzenix authored Jul 11, 2023
1 parent f07e898 commit f44d4e6
Show file tree
Hide file tree
Showing 3 changed files with 1,762 additions and 1,751 deletions.
171 changes: 91 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/lib/RequestsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ export default class RequestManager {
names.push(name);
})

$('tr > td:nth-child(6) > a').each((index, element) => {
$('tr > td:nth-child(5) > a, tr > td:nth-child(6) > a').each((index, element) => {
const href = $(element).attr('href');
if (href) {
hrefs.push(href);
Expand Down Expand Up @@ -659,4 +659,4 @@ function getDeleteToken(html: string) {
// Getting the token (this is really hardcoded but I don't know a more efficient way to extract this)
const token = (webJavaScript.match(/token: \"([\w\d]+)\"/) as RegExpMatchArray)[1];
return token;
}
}
Loading

0 comments on commit f44d4e6

Please sign in to comment.