MarkusMcNugen / docker-qBittorrentvpn

Docker container which runs a headless qBittorrent client with WebUI and optional OpenVPN
https://hub.docker.com/r/markusmcnugen/qbittorrentvpn/
GNU General Public License v3.0
171 stars 92 forks source link

qbittorrent wont auto add .torrent and .magnet files from monitored folder with non-english characters #23

Open thanman85 opened 5 years ago

thanman85 commented 5 years ago

Replicate the issue by adding a .torrent or .magnet file with non english/numeric characters (e.g. 期間.torrent , 领长.magnet) into the Monitored folder set up in qbittorrent.

Expect qbittorrent to add the file, wait forever and watch it not add the file.

Resolved the issue by setting up additional environment variables:

-e LANG=C.UTF-8 
-e LC_ALL=C.UTF-8 

during docker create && docker start / docker run.

Suggest adding these as default options to "Run container from Docker registry" sections on docker hub and github.

Spent ages trying to debug this one.