Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Morea committed Feb 4, 2024
1 parent 5fad0d4 commit 747ec22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Find Unique Titles/config/userscript.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const UserScriptConfig: IWebpackUserScript = {
"https://filelist.io/browse.php*",
"https://jptv.club/torrents*",
"https://hd-torrents.org/torrents.php*",
"https://iptorrents.com/t?*",
"https://iptorrents.com/t*",
"https://kp.m-team.cc/*",
"https://ncore.pro/torrents.php*",
"https://greatposterwall.com/torrents.php*",
Expand Down
2 changes: 1 addition & 1 deletion Find Unique Titles/src/trackers/TNT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class TNT implements tracker {
}

canRun(url: string): boolean {
return url.includes("tntracker.org") && url.includes('/?perPage=');
return url.includes("tntracker.org") && url.includes("/?perPage=");
}

async *getSearchRequest(): AsyncGenerator<MetaData | Request, void, void> {
Expand Down

0 comments on commit 747ec22

Please sign in to comment.