Fix md5 error in NzbImportService

This commit is contained in:
DariusIII
2026-01-15 09:21:20 +01:00
parent 15a2a95816
commit 2088e0bea4
+1 -1
View File
@@ -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;
}
}