Skip to content

Commit

Permalink
fix Bug 65455
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbannov committed Dec 12, 2023
1 parent 04a1034 commit 3e51ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion products/ASC.Files/Core/Utils/FileMarker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ private async IAsyncEnumerable<FileEntry> InternalMarkedItemsAsync<T>(Folder<T>
}

tags = tags
.Where(r => r.EntryType == FileEntryType.Folder && !Equals(r.EntryId, folder.Id))
.Where(r => r.EntryType == FileEntryType.Folder && !Equals(r.EntryId, folder.Id) || r.EntryType == FileEntryType.File)
.Distinct()
.ToList();

Expand Down

0 comments on commit 3e51ded

Please sign in to comment.