se1exin / Cleanarr

A simple UI to help find and delete duplicate and sample files from your Plex server
https://hub.docker.com/r/selexin/cleanarr
MIT License
218 stars 18 forks source link

"Failed to load content!" #92

Closed austin-millan closed 1 year ago

austin-millan commented 1 year ago

The /content/dupes handler is returning the error:

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
austin-millan commented 1 year ago

Nevermind, this issue is fixed using the latest image. Closing.