Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions enhancedtorrentview.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// @namespace Megure@AnimeBytes.tv
// @description Shows how much yen you would receive if you seeded torrents; shows required seeding time; allows sorting and filtering of torrent tables; dynamic loading of transfer history tables
// @include http*://animebytes.tv*
// @version 1.00
// @version 1.01
// @grant GM_getValue
// @grant GM_setValue
// @icon http://animebytes.tv/favicon.ico
Expand Down Expand Up @@ -88,7 +88,7 @@
return row;
}
function get_corresponding_torrent_row(row) {
var anchor = row.querySelector('a[title="Download"]');
var anchor = row.querySelector('a[title="Report"]');
if (anchor !== null) {
var match = anchor.href.match(/id=(\d+)/i);
if (match !== null) {
Expand Down