diff --git a/module/apps/Artist.mjs b/module/apps/Artist.mjs index 7bfa775..21b36cf 100644 --- a/module/apps/Artist.mjs +++ b/module/apps/Artist.mjs @@ -77,7 +77,7 @@ export class ArtistApp extends * we're editing an existing artist instead of creating a new one. */ _onFirstRender() { - if (this._doc.name) { + if (this._doc?.name) { this._updateFrame({ window: { title: this.title } }); }; };