![]() |
Newly added show not appearing in library - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Media Scanning & Identification (https://forum.jellyfin.org/f-media-scanning-identification) +---- Thread: Newly added show not appearing in library (/t-newly-added-show-not-appearing-in-library) |
Newly added show not appearing in library - justn - 2024-02-26 I'm having an issue with Jellyfin not displaying newly added episodes of It's Always Sunny in Philadelphia. This is a new show in my library, the show itself will show up in my Shows, but none of the episodes or seasons appear. Version: 10.8.13 Debian repository Using the web client Permissions my the "Its Always Sunny in Philadelphia" directory are 777. Even if the permissions were 775, Jellyfin still would not find the seasons and episodes. I do have a log with debugging turned on, but it's 18k lines. Please let me know how you'd like me to share it as the forum didn't allow me to add it as an attachment. RE: Newly added show not appearing in library - TheDreadPirate - 2024-02-26 Can you "ls -l" the Always Sunny directory? And copy and paste the output? Also zip up the log and attach it to a post. RE: Newly added show not appearing in library - justn - 2024-02-26 Here's the 'ls -l' Code: justin@alphaDeb:~$ ls -l /mnt/6tbData/Videos/Television/Its\ Always\ Sunny\ in\ Philadelphia/ And my zipped log is attached. RE: Newly added show not appearing in library - TheDreadPirate - 2024-02-26 Code: sudo chmod ug-s /mnt/6tbData/Videos/Television/Its\ Always\ Sunny\ in\ Philadelphia/ RE: Newly added show not appearing in library - justn - 2024-02-27 Running that command made no difference. I scanned all libraries and it still is not showing up. RE: Newly added show not appearing in library - TheDreadPirate - 2024-02-27 My bad. I forgot to put a recursive on that. Code: sudo chmod -R ug-s /mnt/6tbData/Videos/Television/ For the lulz, let's make sure the sticky bit isn't present for the entire library. RE: Newly added show not appearing in library - justn - 2024-02-27 Seems to have helped a bit. Season 3 and 4 appear in my library, but no episodes appear. Seasons 1 and 2 don't appear at all. What does "ug-s" do to permissions? RE: Newly added show not appearing in library - TheDreadPirate - 2024-02-27 It removes the sticky bit for users and group. In your permissions you see the "rws". The sticky bit is supposed to prevent group users from deleting folders. Sometimes it can cause other issues, which is why I had you remove it. Can you share the output of this command? Code: ls -ld /mnt /mnt/6tbData /mnt/6tbData/Videos /mnt/6tbData/Videos/Television Also, what path does the library that contains Always Sunny pointed at? /mnt/6tbData/Videos/Television? RE: Newly added show not appearing in library - justn - 2024-02-27 Thanks for the explanation. Here's the output. Code: justin@alphaDeb:~$ ls -ld /mnt /mnt/6tbData /mnt/6tbData/Videos /mnt/6tbData/Videos/Television The library that contains It's Always Sunny is pointed to /mnt/6tbData/Videos/Television RE: Newly added show not appearing in library - TheDreadPirate - 2024-02-27 Code: setfacl -b -R /mnt/6tbData/Videos |