mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Add support for tracker type (private/public/semi-private)
This commit is contained in:
@@ -66,6 +66,19 @@ function reloadIndexers() {
|
||||
else
|
||||
item.state = "success";
|
||||
|
||||
if (item.type == "public") {
|
||||
item.type_icon_content = "🔓\uFE0E";
|
||||
}
|
||||
else if (item.type == "private") {
|
||||
item.type_icon_content = "🔐\uFE0E";
|
||||
}
|
||||
else if (item.type == "semi-private") {
|
||||
item.type_icon_content = "🔒\uFE0E";
|
||||
}
|
||||
else {
|
||||
item.type_icon_content = "";
|
||||
}
|
||||
|
||||
var main_cats_list = [];
|
||||
for (var catID in item.caps) {
|
||||
var cat = item.caps[catID];
|
||||
|
Reference in New Issue
Block a user