mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix md5 error in NzbImportService
This commit is contained in:
@@ -320,7 +320,7 @@ class NzbImportService
|
||||
asort($binary_names);
|
||||
foreach ($nzbXML->file as $file) {
|
||||
if ($file['subject'] === $binary_names[0]) {
|
||||
$this->nzbGuid = md5($file->segments->segment);
|
||||
$this->nzbGuid = md5((string) $file->segments->segment);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user