Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Pre-Rolls no longer updating in v1.14.x (Works in v1.13.3) #562

Closed
almulder opened this issue Jan 4, 2022 · 7 comments
Closed

Bug: Pre-Rolls no longer updating in v1.14.x (Works in v1.13.3) #562

almulder opened this issue Jan 4, 2022 · 7 comments
Assignees
Labels
bug Bug is with Plex Meta Manager status:added-to-develop Feature Request or Bug Fix is in Develop

Comments

@almulder
Copy link

almulder commented Jan 4, 2022

Describe the Bug
The prerolls have been updating correctly, however sometime between 12/24 and now they have stopped updating, seems like something in the new builds have broken this feature. (or plex update broke this)

Relevant Collection Config
my movies.yml file has not been changed, the only thing that has changed is the docker had been updated

Plex Meta Manager Info
Version: 1.14.1

Link to logs (required)
log shows it should have been added but did not.
meta.log

@almulder almulder added bug Bug is with Plex Meta Manager status:not-yet-viewed I haven't reviewed the Feature or Bug yet labels Jan 4, 2022
@almulder
Copy link
Author

almulder commented Jan 4, 2022

Can confirm that in 1.14.0 and 1.14.1 this feature is broken, I have downgraded docker to 1.13.3 and it works again. Upgraded and it no longer works, downgraded again and it works.

v1.13.3 Log
meta.log

@almulder almulder changed the title Bug: Prerolls no longer updating Bug: Pre-Rolls no longer updating in v1.14.x (Works in v1.13.3) Jan 4, 2022
meisnate12 added a commit that referenced this issue Jan 4, 2022
@meisnate12 meisnate12 added status:added-to-develop Feature Request or Bug Fix is in Develop and removed status:not-yet-viewed I haven't reviewed the Feature or Bug yet labels Jan 4, 2022
@meisnate12
Copy link
Member

should be fixed in develop

@pcmv-dev
Copy link

pcmv-dev commented Jan 6, 2022

It is working in develop1522 but it does not respect templates

@meisnate12
Copy link
Member

can you elaborate what you mean?

@pcmv-dev
Copy link

pcmv-dev commented Jan 6, 2022

It will ignore the schedule when done this way

templates:
  Prerolls:
    build_collection: false
    server_preroll: <<videos>>
collections:
  Spring:
    template:
      name: Prerolls
      schedule: range(03/01-05/31)
      videos: "/preroll/spring.mp4"
  Summer:
    template:
      name: Prerolls
      schedule: range(06/01-08/31)
      videos: "/preroll/summer.mp4"

@meisnate12
Copy link
Member

thats because thats not how it works you're trying to add a template variable called schedule and then you don't use it.

templates:
  Prerolls:
    build_collection: false
    server_preroll: <<videos>>
collections:
  Spring:
    schedule: range(03/01-05/31)
    template:
      name: Prerolls
      videos: "/preroll/spring.mp4"
  Summer:
    schedule: range(06/01-08/31)
    template:
      name: Prerolls
      videos: "/preroll/summer.mp4"

or

templates:
  Prerolls:
    build_collection: false
    schedule: <<schedule>>
    server_preroll: <<videos>>
collections:
  Spring:
    template:
      name: Prerolls
      schedule: range(03/01-05/31)
      videos: "/preroll/spring.mp4"
  Summer:
    template:
      name: Prerolls
      schedule: range(06/01-08/31)
      videos: "/preroll/summer.mp4"

or for even smaller

templates:
  Prerolls:
    build_collection: false
collections:
  Spring:
    template: { name: Prerolls }
    schedule: range(03/01-05/31)
    server_preroll: "/preroll/spring.mp4"
  Summer:
    template: { name: Prerolls }
    schedule: range(06/01-08/31)
    server_preroll: "/preroll/summer.mp4"

tbh not sure why you're bothering to create a template variable for videos when you could just do server_preroll

@pcmv-dev
Copy link

pcmv-dev commented Jan 6, 2022

Understood so me just being dumb. Ty sir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Bug is with Plex Meta Manager status:added-to-develop Feature Request or Bug Fix is in Develop
Projects
None yet
Development

No branches or pull requests

3 participants