mirror of
https://github.com/stashapp/stash.git
synced 2026-04-19 21:41:42 +02:00
Fix UI crash when scraping new scene (#3283)
This commit is contained in:
parent
05b0fb23f4
commit
74506bc5e8
1 changed files with 1 additions and 1 deletions
|
|
@ -436,7 +436,7 @@ export const SceneEditPanel: React.FC<IProps> = ({
|
|||
|
||||
const currentScene = getSceneInput(formik.values);
|
||||
if (!currentScene.cover_image) {
|
||||
currentScene.cover_image = scene.paths!.screenshot;
|
||||
currentScene.cover_image = scene.paths?.screenshot;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue