[addon] add bingeGroup to stream responses

This commit is contained in:
TheBeastLT
2021-02-05 09:37:36 +01:00
parent 6c95f0e22c
commit 154b639a11
6 changed files with 24 additions and 11 deletions

View File

@@ -45,7 +45,7 @@ async function getBestTrackers(retry = 2) {
.catch(error => {
if (retry === 0) {
console.log(`Failed retrieving best trackers: ${error.message}`);
return [];
throw error;
}
return getBestTrackers(retry - 1);
});