mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
Fix PlexServer.isBrowsable(path)
when running Plex API on a different OS (#933)
This commit is contained in:
parent
6fc7d95266
commit
b14a653a3b
1 changed files with 0 additions and 1 deletions
|
@ -393,7 +393,6 @@ class PlexServer(PlexObject):
|
|||
"""
|
||||
if isinstance(path, Path):
|
||||
path = path.path
|
||||
path = os.path.normpath(path)
|
||||
paths = [p.path for p in self.browse(os.path.dirname(path), includeFiles=False)]
|
||||
return path in paths
|
||||
|
||||
|
|
Loading…
Reference in a new issue