Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyyrylainen committed Dec 1, 2024
1 parent 9920fe1 commit 2ba7036
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Client/Pages/Media.razor
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,8 @@
PageSize = files.PageSize,
PageCount = files.PageCount,
RowCount = files.RowCount + subFolders.Count,
Results = subFolders.Select(f => new MediaBrowserEntry(f)).Concat(files.Results.Select(f => new MediaBrowserEntry(f))).ToArray(),
Results = subFolders.Select(f => new MediaBrowserEntry(f)).Concat(
files.Results.Select(f => new MediaBrowserEntry(f))).ToArray(),
};

return combinedResult;
Expand Down

0 comments on commit 2ba7036

Please sign in to comment.