Refresh command works for only one media sever.

All your suggestions, requests and ideas for future development
Post Reply
gdlk
Posts: 12
Joined: 12 Mar 2025, 08:48

Refresh command works for only one media sever.

Post by gdlk »

In my filebot amc script, I have specified two media servers, jellyfin and emby.
But in the output there is only the push command for jellyfin, not for emby.
And I can see that the jellyfin has been updated but the emby has not.
Is this a bug?

Shell: Select all

  
  ...
  --def jellyfin=172.17.0.1:10008:3fce808210a94ac0bf12d449442f86de \
  --def emby=172.17.0.1:10009:4kdi015d792a40a1bc67bf9e15e88cff \
  ...

Console Output: Select all

...
args[29] = --def
args[30] = jellyfin=172.17.0.1:10008:3fce808210a94ac0bf12d449442f86de
args[31] = --def
args[32] = emby=172.17.0.1:10090:4kdi015d792a40a1bc67bf9e15e88cff
...
POST: http://172.17.0.1:10008/Library/Refresh?api_key=3fce808210a94ac0bf12d449442f86de
User avatar
rednoah
The Source
Posts: 23922
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Refresh command works for only one media sever.

Post by rednoah »

:idea: --def jellyfin and --def emby are the same option for historical reasons.

:arrow: You can send requests to multiple Jellyfin / Emby instances like so:

Shell: Select all

--def jellyfin="172.17.0.1:10008:3fce808210a94ac0bf12d449442f86de 172.17.0.1:10009:4kdi015d792a40a1bc67bf9e15e88cff"
:idea: Please read the FAQ and How to Request Help.
gdlk
Posts: 12
Joined: 12 Mar 2025, 08:48

Re: Refresh command works for only one media sever.

Post by gdlk »

Thank you, it works!
Post Reply