Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(torrent): expand unregisteredStatuses #10

Merged
merged 1 commit into from
Jan 12, 2025
Merged
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
34 changes: 30 additions & 4 deletions config/torrent.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,39 @@ import (

var (
unregisteredStatuses = []string{
"not registered with this tracker",
"complete season uploaded",
"dead",
"dupe",
"i'm sorry dave, i can't do that", // RFM specific
"infohash not found",
"internal available",
"not exist",
"not found",
"not registered",
"nuked",
"pack is available",
"packs are available",
"problem with description",
"problem with file",
"problem with pack",
"retitled",
"season pack",
"specifically banned",
"torrent does not exist",
"torrent existiert nicht",
"torrent has been deleted",
"torrent has been nuked",
"torrent is not authorized for use on this tracker",
"torrent is not found",
"torrent nicht gefunden",
"tracker nicht registriert",
"torrent not found",
"torrent has been nuked",
"torrent does not exist",
"unregistered torrent",
"trump",
"truncated",
"unknown",
"unregistered",
"upgraded",
"uploaded",
}
)

Expand Down
Loading