Skip to content

Commit

Permalink
✨ Allow getting base writer and director as split item
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Nov 10, 2023
1 parent 8581214 commit b3789a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/tmdbhelper/lib/monitor/itemdetails.py
Expand Up @@ -22,7 +22,8 @@
('base_tvshowtitle', ('tvshowtitle',), None),
('base_studio', ('studio',), lambda v: v.split(' / ')[0] if v else None),
('base_genre', ('genre',), lambda v: v.split(' / ')[0] if v else None),

('base_director', ('director',), lambda v: v.split(' / ')[0] if v else None),
('base_writer', ('writer',), lambda v: v.split(' / ')[0] if v else None),
]

CV_USE_MULTI_TYPE = ""\
Expand Down

0 comments on commit b3789a0

Please sign in to comment.