Quantcast
Channel: configuration - Forum - FlexGet
Viewing all articles
Browse latest Browse all 716

Combine two trakt_list items as input for configure_series

$
0
0

@manu wrote:

I have two lists on trakt, e.g. "good_shows" and "awesome_shows". I have a task that takes care of all my shows, and I want to feed it via configure_series. I make no distinction between the shows on both lists when it comes to flexget, so I want the exact same task to run for any show in either of the two lists. I'm unable to get this to work, despite having previously had success when combining lists by simply using the same plugin twice at the same level. This is also what seems to be suggested as a working method explicitly for trakt_list and configure_series in this post.

Here is my config:

tasks:
  all_shows:
    html:
      url: '{? urls.tvshows ?}'
    configure_series:
      settings:
        specials: no
      from:
        trakt_list:
          account: '{? trakt.account ?}'
          list: good_shows
        trakt_list:
          account: '{? trakt.account ?}'
          list: awesome_shows
    exec:
      on_output:
        for_accepted: echo "{{ series_name|replace(" ", ".")|replace("'", "")|replace("..", ".") }}" "{{ series_id }}"

It works fine if I just use one trakt_list plugin entry. When I use both, I get a warning via flexget check:
Trying to set value for `trakt_list` in line x, but it is already defined in line x-5!

Am I doing something wrong?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles