Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1245b2c58b5a1b5fb4aee9a4f974ecfb131de2bd You should set ROOT_URL correctly, otherwise the web may not work correctly.

Ensure path is valid before watching it

pull/3968/head
Bogdan 2 years ago
parent 108fc8c724
commit 1245b2c58b

@ -116,6 +116,9 @@ namespace NzbDrone.Core.MediaFiles
private void StartWatchingPath(string path)
{
Ensure.That(path, () => path).IsNotNullOrWhiteSpace();
Ensure.That(path, () => path).IsValidPath(PathValidationType.CurrentOs);
// Already being watched
if (_fileSystemWatchers.ContainsKey(path))
{

Loading…
Cancel
Save