Skip to content

Commit

Permalink
Add Indexer information
Browse files Browse the repository at this point in the history
  • Loading branch information
arvida42 committed Jun 21, 2024
1 parent 8f0660d commit ab5a47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/jackettio.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ export async function getStreams(userConfig, type, stremioId, publicUrl){
const rows = [torrent.name];
if(type == 'series' && file.name)rows.push(file.name);
if(torrent.infoText)rows.push(`ℹ️ ${torrent.infoText}`);
rows.push([`💾${bytesToSize(file.size || torrent.size)}`, `👥${torrent.seeders}`, ...(torrent.languages || []).map(language => language.emoji)].join(' '));
rows.push([`💾${bytesToSize(file.size || torrent.size)}`, `👥${torrent.seeders}`, `⚙️${torrent.indexerId}`, ...(torrent.languages || []).map(language => language.emoji)].join(' '));
if(torrent.progress && !torrent.isCached){
rows.push(`⬇️ ${torrent.progress.percent}% ${bytesToSize(torrent.progress.speed)}/s`);
}
Expand Down

0 comments on commit ab5a47b

Please sign in to comment.