Quantcast
Channel: help - Forum - FlexGet
Viewing all articles
Browse latest Browse all 837

TVDB lookup no longer returns tvdb_series_name

$
0
0

@ZileXa wrote:

It has been a while since I upgraded Flexget. I am now on 2.21.19 since my old version no longer worked.

However it seems like tvdb_series_name is no longer a common field?

Example with just my first 2 tasks, getting the next unseen episode and creating a list of series and the first episode to watch and setting the beginning for each series.

templates: 
global:
##### Series metainfo mainly for move and update tasks#
  series-metainfo:
    metainfo_series: yes
    thetvdb_lookup: yes
    require_field:
      - tvdb_series_name

tasks:
########## SERIES ##########
# SYNC WITH TRAKT
##### First run only (use ~/flexget/bin/flexget execute --now) Sync Flexget database with watched status in Trakt#  
  get-series-nextep:
    priority: 2
    template:
      - disable-seen-retry
      - series-metainfo
    list_clear:
      what:
        - entry_list: trakt-series-begin
    next_trakt_episodes:
      account: "{? trakt.account ?}"
      list: "{? trakt.series ?}"
      context: watched
      position: next
    accept_all: yes
    list_add:
      - entry_list: trakt-series-begin

  set-series-nextep:
    priority: 3
    template:
      - disable-seen-retry
      - series-metainfo
    entry_list: trakt-series-begin
    accept_all: yes
    set:
      series_name: "{{tvdb_series_name|escape|replace(''', '')}}"
    set_series_begin: yes

The first task already fails, simply because the required field tvdb_series_name is missing. How come? it's doing a lookup and one of the least things you expect is that name.. What changed in Flexget this year?

2019-09-23 22:03 VERBOSE  list_clear    get-series-nextep clearing all items from entry_list - trakt-series-begin
2019-09-23 22:03 VERBOSE  details       get-series-nextep Produced 38 entries.
2019-09-23 22:03 VERBOSE  task          get-series-nextep ACCEPTED: `NCIS: Los Angeles (2009) S11E01` by accept_all plugin
2019-09-23 22:03 VERBOSE  task          get-series-nextep ACCEPTED: `Grey's Anatomy (2005) S16E01` by accept_all plugin
2019-09-23 22:03 VERBOSE  details       get-series-nextep Summary - Accepted: 38 (Rejected: 0 Undecided: 0 Failed: 0)
2019-09-23 22:03 VERBOSE  list_add      get-series-nextep adding accepted entries into entry_list - trakt-series-begin
2019-09-23 22:03 VERBOSE  ipc                           Running command `execute --tasks find-* move-*` for client.
2019-09-23 22:03 VERBOSE  manager                       There is a task already running, execution queued.
2019-09-23 22:04 VERBOSE  details       set-series-nextep Produced 38 entries.
2019-09-23 22:04 ERROR    set           set-series-nextep Could not set series_name for Grey's Anatomy (2005) S16E01: (UndefinedError) 'tvdb_series_name' is undefined
2019-09-23 22:04 ERROR    set           set-series-nextep Could not set series_name for NCIS: Los Angeles (2009) S11E01: (UndefinedError) 'tvdb_series_name' is undefined

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 837

Trending Articles