Seerr and Homepage widget display not the real information #2780
-
|
When I request a movie or a tv-serie in Seerr and it is downloading I see on the Homepage widget that it is pending and processing. After it is downloaded and processed I only see in the Hompage widget that completed has value 2 but the value for available and approved are 0 while they are approved and available. Does anybody know to fix this? The output of the api request (curl -i -X GET "http://192.168.178.xxx:5055/api/v1/request/count" -H "accept: application/json" -H "X-Api-Key: MY_API_KEY") is: HTTP/1.1 200 OK {"total":2,"movie":2,"tv":0,"pending":0,"approved":0,"declined":0,"processing":0,"available":0,"completed":2} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
This is not an issue? A request that is approved and available is marked as completed. A request only have one state. |
Beta Was this translation helpful? Give feedback.
The
AVAILABLEstatus is a temporary one.Let's say you request a movie:
Day 1: Request is
PENDING(waiting for approval)Day 1: Admin approves/denies => Request becomes
APPROVED/DECLINED+ Media status becomesPENDING=> Request shows as "processing"Day 1-2: Radarr starts downloading => Media status becomes
PROCESSING=> Request still shows as "processing"Day 2: Radarr finishes download => Media status becomes
AVAILABLE=> Request briefly shows as "available" (if API called at this moment)Day 2: Availability sync job runs => Request becomes
COMPLETED