| 126 | } |
| 127 | |
| 128 | private alternativeTitle() { |
| 129 | for (const prop in this.animeI().attributes.abbreviatedTitles) { |
| 130 | const el = this.animeI().attributes.abbreviatedTitles[prop]; |
| 131 | if (el !== this.meta.title && el) { |
| 132 | this.meta.alternativeTitle.push(el); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | for (const prop in this.animeI().attributes.titles) { |
| 137 | const el = this.animeI().attributes.titles[prop]; |
| 138 | if (el !== this.meta.title && el) { |
| 139 | this.meta.alternativeTitle.push(el); |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | private characters() { |
| 145 | if (this.animeInfo.included && this.animeInfo.included.length) { |