Skip to content

Commit

Permalink
reverse logic
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Jan 25, 2024
1 parent 252672a commit 2c98992
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public String getDatasetCardImageAsUrl(Dataset dataset, Long versionId, boolean
StorageIO<DvObject> storageIO = null;
try {
storageIO = DataAccess.getStorageIO(dataset);
if (!storageIO.isAuxObjectCached(DatasetUtil.datasetLogoFilenameFinal)) {
if (storageIO.isAuxObjectCached(DatasetUtil.datasetLogoFilenameFinal)) {
// If not, return null/use the default, otherwise pass the logo URL
hasDatasetLogo = true;
}
Expand Down

0 comments on commit 2c98992

Please sign in to comment.