Browse Source

Update MongoAssetRepository.cs

release/6.x
Sebastian Stehle 3 years ago
committed by GitHub
parent
commit
27dcc5253e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      backend/src/Squidex.Domain.Apps.Entities.MongoDb/Assets/MongoAssetRepository.cs

2
backend/src/Squidex.Domain.Apps.Entities.MongoDb/Assets/MongoAssetRepository.cs

@ -259,7 +259,7 @@ namespace Squidex.Domain.Apps.Entities.MongoDb.Assets
Filter.Gt(x => x.Id, DomainId.Create(string.Empty)), Filter.Gt(x => x.Id, DomainId.Create(string.Empty)),
Filter.Gt(x => x.IndexedAppId, appId), Filter.Gt(x => x.IndexedAppId, appId),
Filter.Ne(x => x.IsDeleted, true), Filter.Ne(x => x.IsDeleted, true),
Filter.Ne(x => x.ParentId, parentId)); Filter.Eq(x => x.ParentId, parentId));
} }
} }
} }

Loading…
Cancel
Save