Fix possible inesistent author

pull/73/head
MillenniumEarl 2021-03-04 10:01:14 +01:00
parent 8204df9a15
commit 839016daa3
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ function fillWithPostData(hw: HandiWork, elements: IPostElement[]) {
getPostElementByName(elements, "developer/publisher") ||
getPostElementByName(elements, "artist");
const author: TAuthor = {
name: authorElement.text,
name: authorElement?.text,
platforms: []
};