mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(nodes): handle intermediates during images.get_many()
This commit is contained in:
committed by
Kent Keirsey
parent
33a0af4637
commit
ee0225f4ba
@ -330,6 +330,7 @@ class ImageService(ImageServiceABC):
|
||||
self,
|
||||
image_type: ImageType,
|
||||
image_category: ImageCategory,
|
||||
is_intermediate: bool = False,
|
||||
page: int = 0,
|
||||
per_page: int = 10,
|
||||
) -> PaginatedResults[ImageDTO]:
|
||||
@ -337,6 +338,7 @@ class ImageService(ImageServiceABC):
|
||||
results = self._services.records.get_many(
|
||||
image_type,
|
||||
image_category,
|
||||
is_intermediate,
|
||||
page,
|
||||
per_page,
|
||||
)
|
||||
|
Reference in New Issue
Block a user