diff --git a/Blacklight/processing/post/ProcessAdditional.php b/Blacklight/processing/post/ProcessAdditional.php index 6ea8b76f1..f3aeb4d04 100755 --- a/Blacklight/processing/post/ProcessAdditional.php +++ b/Blacklight/processing/post/ProcessAdditional.php @@ -1211,7 +1211,7 @@ class ProcessAdditional */ if ($this->_addedFileInfo < 11 && ReleaseFile::query()->where(['releases_id' => $this->_release->id, 'name' => $file['name'], 'size' => $file ['size'], ])->first() === null) { - if (ReleaseFile::addReleaseFiles($this->_release->id, $file['name'], $file['size'], $file['date'], $file['pass'], '', $file['crc32'])) { + if (ReleaseFile::addReleaseFiles($this->_release->id, $file['name'], $file['size'], $file['date'], $file['pass'], '', $file['crc32'] ?? '')) { $this->_addedFileInfo++; if ($this->_echoCLI) { diff --git a/Changelog b/Changelog index 54427368b..5c9b950b3 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-11-30 DariusIII + * Fix: Fix undefined index crc32 when adding data from rar * Chg: Update more symfony components * Chg: Move column status updates to inside function checks * Chg: Use true switch in place of numerical 1 in NameFixer functions used in groupFixRelNames.php