Closed austin-millan closed 1 year ago
The /content/dupes handler is returning the error:
/content/dupes
Failed to load content! Please check your Plex settings and try again
Here's where the error is thrown:
https://github.com/se1exin/Cleanarr/blob/3704db8114ed00e05ce5a706e3035b66a7136063/frontend/src/components/ContentList.tsx#L45-L54
The HTTP error is 504 (gateway timeout).
Here's the docker-compose file I'm using:
version: '3.3' services: cleanarr: image: selexin/cleanarr:latest ports: - "5050:80" environment: - BYPASS_SSL_VERIFY=0 - PLEX_TOKEN=<redacted> - PLEX_BASE_URL=http://<LAN_IP>:32400 - LIBRARY_NAMES=Movies;TV Shows; - PLEX_TIMEOUT=7200 - PAGE_SIZE=50 restart: always volumes: - /mnt/cache/appdata/cleanarr:/config
Nevermind, this issue is fixed using the latest image. Closing.
The
/content/dupes
handler is returning the error:Here's where the error is thrown:
https://github.com/se1exin/Cleanarr/blob/3704db8114ed00e05ce5a706e3035b66a7136063/frontend/src/components/ContentList.tsx#L45-L54
The HTTP error is 504 (gateway timeout).
Here's the docker-compose file I'm using: