Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegoO committed Jan 17, 2025
1 parent 6773969 commit 7198019
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ public string AltImage
if (Images != null && _altImage == null)
{
var altImageUrls = Images
.Where(x => x.SortOrder > 0)
.OrderBy(x => x.SortOrder)
.Select(x => _blobUrlResolver != null ? _blobUrlResolver.GetAbsoluteUrl(x.Url) : x.Url)
.Skip(1)
.ToArray();

_altImage = string.Join(_csvCellDelimiter[1], altImageUrls);
Expand All @@ -242,9 +242,9 @@ public string AltImageGroup
if (Images != null && _altImageGroup == null)
{
var altImageGroups = Images
.Where(x => x.SortOrder > 0)
.OrderBy(x => x.SortOrder)
.Select(x => x.Group)
.Skip(1)
.ToArray();

_altImageGroup = string.Join(_csvCellDelimiter[1], altImageGroups);
Expand Down

0 comments on commit 7198019

Please sign in to comment.