@oystein wrote:
When I add a movie to my trakt watchlist, it's adds fine to my movies list.
But sometimes flexget get's this weird notion that it's not released yet and outputs:
<movie> hasn't been released yet (Expected: 2016-12-13 00:00:00)
On several occasions this is directly wrong and the movie is out.
Does anyone know how I can have flexget ignore release dates for movies?
Full config:
# File with usernames and passwords secrets: secrets.yml # Templates templates: global: torrent_alive: yes #numer of seeders needed to accept, yes = 1 # Template for downloading TV shows deluge-series: deluge: username: '{{ secrets.deluge.user }}' password: '{{ secrets.deluge.password }}' path: /mnt/wdmycloud/Downloads/Incomplete movedone: /mnt/wdmycloud/Videos/Series/{{series_name|pathscrub}}/S{{"%02d"|format(series_season)}} queuetotop: no # Template for downloading movies download-movies: discover: what: - movie_list: watchlist from: - sceneaccess: username: '{{ secrets.sceneaccess.user }}' password: '{{ secrets.sceneaccess.password }}' deluge: username: '{{ secrets.deluge.user }}' password: '{{ secrets.deluge.password }}' path: /mnt/wdmycloud/Downloads/Incomplete movedone: /mnt/wdmycloud/Videos/Movies queuetotop: yes removeatratio: no # Template for sending email when new download has been started send_email: email: from: '{{ secrets.mail.from }}' to: '{{ secrets.mail.to }}' smtp_host: '{{ secrets.mail.host }}' smtp_port: 587 smtp_username: '{{ secrets.mail.user }}' smtp_password: '{{ secrets.mail.password }}' smtp_tls: yes tasks: populate_TVShows: priority: 2 content_size: min: 200 max: 4000 configure_series: from: trakt_list: account: '{{ secrets.trakt.user }}' list: TVShows type: shows strip_dates: yes settings: quality: webrip+ identified_by: ep tracking: no exists_series: /mnt/wdmycloud/Videos/Series/ discover: what: - next_series_episodes: yes from: - sceneaccess: username: '{{ secrets.sceneaccess.user }}' password: '{{ secrets.sceneaccess.password }}' template: - deluge-series - send_email deluge: removeatratio: no populate_Movie_list: priority: 3 trakt_list: account: '{{ secrets.trakt.user }}' list: watchlist type: movies strip_dates: yes accept_all: yes seen: local list_add: - movie_list: watchlist get_movies_720p: verify_ssl_certificates: no priority: 4 content_size: max: 6000 min: 1024 quality: 720p template: - download-movies - send_email get_movies_1080p: verify_ssl_certificates: no priority: 5 content_size: max: 20000 min: 1024 quality: 1080p delay: 5 hours template: - download-movies - send_email
Posts: 2
Participants: 2