mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Return scrape results if only relationships are returned (#3954)
* Handle scene scrape results where basic fields unset * Apply fix to other types * Show scrape dialog if only new items scraped
This commit is contained in:
@@ -426,7 +426,11 @@ export const SceneScrapeDialog: React.FC<ISceneScrapeDialogProps> = ({
|
||||
details,
|
||||
image,
|
||||
stashID,
|
||||
].every((r) => !r.scraped)
|
||||
].every((r) => !r.scraped) &&
|
||||
newTags.length === 0 &&
|
||||
newPerformers.length === 0 &&
|
||||
newMovies.length === 0 &&
|
||||
!newStudio
|
||||
) {
|
||||
onClose();
|
||||
return <></>;
|
||||
|
||||
Reference in New Issue
Block a user