Skip to content

Commit

Permalink
[fix] markers property of Metadata class is a list (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 authored Dec 18, 2024
1 parent ae84e41 commit 13df656
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .idea/pytulli.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tautulli/models/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class MetadataModel(BaseModel):
live: Optional[int] = None
media_info: Optional[List[MediaInfoItemModel]] = None
edition_title: Optional[str] = None
markers: Optional[MarkerModel] = None
markers: Optional[List[MarkerModel]] = None
slug: Optional[str] = None
parent_slug: Optional[str] = None
grandparent_slug: Optional[str] = None
Expand Down

0 comments on commit 13df656

Please sign in to comment.