Skip to content

Commit

Permalink
Fix typoe
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Dec 2, 2024
1 parent 613dc40 commit 413000b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Serval/src/Serval.Translation/Services/EngineService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public override async Task<Engine> GetAsync(string id, CancellationToken cancell
}

public override async Task<IEnumerable<Engine>> GetAllAsync(
string id,
string owner,
CancellationToken cancellationToken = default
)
{
return await Entities.GetAllAsync(
e => e.Id == id && (e.IsInitialized == null || e.IsInitialized.Value),
e => e.Owner == owner && (e.IsInitialized == null || e.IsInitialized.Value),
cancellationToken
);
}
Expand Down

0 comments on commit 413000b

Please sign in to comment.