diff --git a/Blacklight/processing/ProcessReleases.php b/Blacklight/processing/ProcessReleases.php index 9f8a793d8..800ea3ac0 100755 --- a/Blacklight/processing/ProcessReleases.php +++ b/Blacklight/processing/ProcessReleases.php @@ -270,8 +270,9 @@ class ProcessReleases try { $taggedRelease = Release::find($release->id); $taggedRelease->tag($catId['tags']); - } catch(\Throwable $e) { + } catch (\Throwable $e) { //Just pass this part, tag is not created for some reason, exception is thrown and blocks release creation + continue; } $categorized++; if ($this->echoCLI) { @@ -623,8 +624,9 @@ class ProcessReleases try { $release = Release::find($releaseID); $release->tag($determinedCategory['tags']); - } catch(\Throwable $e) { + } catch (\Throwable $e) { //Just pass this part, tag is not created for some reason, exception is thrown and blocks release creation + continue; } if ($releaseID !== null) {