Skip to content

Commit

Permalink
Makes an empty MediaAsset column a non-blocking validation.
Browse files Browse the repository at this point in the history
  • Loading branch information
holmbergius committed Apr 12, 2024
1 parent 65de2fb commit c08703f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1587,8 +1587,8 @@ public MediaAsset getMediaAsset(Row row, int i, AssetStore astore, Shepherd mySh
String fullPath = null;
try {

if (localPath==null||"null".equals(localPath)) {
feedback.logParseError(assetColIndex(i, allColsMap), localPath, row);
if (localPath==null||"null".equals(localPath)||"".equals(localPath.trim())) {
feedback.logParseNoValue(assetColIndex(i, allColsMap));
return null;
}

Expand Down

0 comments on commit c08703f

Please sign in to comment.