| 111 | } |
| 112 | |
| 113 | private image() { |
| 114 | this.meta.image = |
| 115 | this.animeI().attributes.posterImage && this.animeI().attributes.posterImage.small |
| 116 | ? this.animeI().attributes.posterImage.small |
| 117 | : ''; |
| 118 | this.meta.imageLarge = |
| 119 | this.animeI().attributes.posterImage && this.animeI().attributes.posterImage.original |
| 120 | ? this.animeI().attributes.posterImage.original |
| 121 | : ''; |
| 122 | this.meta.imageBanner = |
| 123 | this.animeI().attributes.coverImage && this.animeI().attributes.coverImage.large |
| 124 | ? this.animeI().attributes.coverImage.large |
| 125 | : ''; |
| 126 | } |
| 127 | |
| 128 | private alternativeTitle() { |
| 129 | for (const prop in this.animeI().attributes.abbreviatedTitles) { |