• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Enable Backdrops Globally

     
    • 0 Vote(s) - 0 Average

    Enable Backdrops Globally

    Enable Backdrops Globally 10.10.x
    Ammer Ashraf Emon
    Offline

    Junior Member

    Posts: 6
    Threads: 3
    Joined: 2023 Sep
    Reputation: 0
    #1
    2024-11-03, 05:29 PM
    I love the backdrop feature in Jellyfin. But, is there any way to enable backdrops by default for all users? enableBackdrops:function(){return E} this used to work in v10.9 but after 10.10 this solution no longer works. If anyone knows of any workaround, it would be really helpful.
    I really appreciate any help you can provide.
    Ted Hinklater
    Offline

    Member

    Posts: 155
    Threads: 8
    Joined: 2023 Nov
    Reputation: 22
    Country:United Kingdom
    #2
    2024-11-03, 07:37 PM (This post was last modified: 2024-11-03, 07:43 PM by Ted Hinklater. Edited 1 time in total.)
    I changed enableBackdrops:function(){return L} to enableBackdrops:function(){return E} and it worked on 10.10.0 (about to update though)

    Edit: It works with 10.10.1, it's now change {return R} to {return E} but it works
    Ammer Ashraf Emon
    Offline

    Junior Member

    Posts: 6
    Threads: 3
    Joined: 2023 Sep
    Reputation: 0
    #3
    2024-11-04, 02:34 AM
    I was replacing _ With E in my script, so it did not work. Thank you very much.
    CaptainChip
    Offline

    Junior Member

    Posts: 3
    Threads: 1
    Joined: 2023 Sep
    Reputation: 0
    #4
    2025-04-09, 09:21 PM
    Sorry to bump an old thread, but is this feature still working in 10.10.7? I have tried replacing the line following a guide online and cant seem to get it to work
    visualblind
    Online

    Junior Member

    Posts: 24
    Threads: 4
    Joined: 2023 Sep
    Reputation: 0
    Country:United States
    #5
    Yesterday, 05:52 AM (This post was last modified: Yesterday, 07:58 AM by visualblind. Edited 12 times in total.)
    (2025-04-09, 09:21 PM)CaptainChip Wrote: Sorry to bump an old thread, but is this feature still working in 10.10.7? I have tried replacing the line following a guide online and cant seem to get it to work

    @CaptainChip I confirm the method of changing the enableBackdrops:function() in main.jellyfin.bundle.js still works in 10.10.7 Smiling-face-with-sunglasses 

    enableBackdrops:function(){return R}

    has to be changed to:

    enableBackdrops:function(){return E}

    The change that I performed was at line 2 at character number 324386

    [Image: enable-Backdrops-function.png]

    For those of you that say it doesn't work, you likely are using a cached version of main.jellyfin.bundle.js somehow. Always verify and confirm it changed by directly loading the file in the browser.

    The letter that you change FROM won't stay the same version to version, so don't use that as a guide.

    If you need a reliable way to search for what's in your file, you could either search using the fixed string

    Code:
    'enableBackdrops:function(){return '

    or use regex with sed like this:

    Code:
    sed -n '/enableBackdrops:function(){return \w}/p' main.jellyfin.bundle.js

    the \w character class will catch any single letters, numbers, and underscores

    or use sed to replace any character not equal to E like this:

    Code:
    sed -i 's/enableBackdrops:function(){return [^E]}/enableBackdrops:function(){return E}/' main.jellyfin.bundle.js

    If using extended regex with sed:

    Code:
    sed -E -i 's/enableBackdrops:function\(\)\{return [^E]\}/enableBackdrops:function\(\)\{return E\}/' main.jellyfin.bundle.js
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode