Merge pull request #121 from 23doors/fix_alldebrid
fix: alldebrid with empty .files
This commit is contained in:
commit
17bd28ed23
1 changed files with 8 additions and 3 deletions
|
|
@ -251,6 +251,11 @@ namespace RdtClient.Service.Services.TorrentClients
|
|||
|
||||
foreach (var link in links)
|
||||
{
|
||||
if (link.Files == null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
var fileList = GetFiles(link.Files, "");
|
||||
|
||||
Log($"{link.Filename} ({link.Size}b) {link.LinkUrl}, contains files:{Environment.NewLine}{String.Join(Environment.NewLine, fileList)}");
|
||||
|
|
|
|||
Loading…
Reference in a new issue