Methods
(static) getRowItemSubtitle(item) → {string}
Returns the secondary display subtitle for a row item.
- Season: returns the series name (stored in item.subtitle by the transformer)
- Episode: returns the series name (item.seriesName)
- All others: returns the pre-computed subtitle field (e.g., "2024 • PG-13" for Movie, "2020 - Present" for Series)
Parameters:
| Name | Type | Description |
|---|---|---|
item | object | JellyfinBaseItem content node |
Returns:
Display subtitle string, or "" if item is invalid
- Type:
- string
(static) getRowItemTitle(item) → {string}
Returns the primary display title for a row item.
- Season: returns the season label (item.name, e.g. "Season 1")
- Episode: returns the episode code and title (item.subtitle, e.g. "S1E2 - Pilot")
- All others: returns item.name
Parameters:
| Name | Type | Description |
|---|---|---|
item | object | JellyfinBaseItem content node |
Returns:
Display title string, or "" if item is invalid
- Type:
- string