feat: clickable cast members to browse actor filmography

close #723
This commit is contained in:
edde746
2026-04-08 05:17:37 +02:00
parent b82c612f94
commit f926deb63b
3 changed files with 204 additions and 1 deletions
+9
View File
@@ -1897,6 +1897,15 @@ class PlexClient {
);
}
/// Get media featuring a specific person (actor/director)
Future<List<PlexMetadata>> getPersonMedia(String personId) {
return _wrapListApiCall<PlexMetadata>(
() => _http.get('/library/people/$personId/media'),
_extractMetadataList,
'Failed to get person media',
);
}
/// Delete a collection
/// Deletes a library collection from the server
Future<bool> deleteCollection(String sectionId, String collectionId) async {