mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
try to fix unhandled exception in file refresher
This commit is contained in:
parent
716aef7e47
commit
9fb7bd1367
@ -45,6 +45,11 @@ namespace MediaBrowser.Server.Implementations.IO
|
|||||||
|
|
||||||
private void AddAffectedPath(string path)
|
private void AddAffectedPath(string path)
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(path))
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException("path");
|
||||||
|
}
|
||||||
|
|
||||||
if (!_affectedPaths.Contains(path, StringComparer.Ordinal))
|
if (!_affectedPaths.Contains(path, StringComparer.Ordinal))
|
||||||
{
|
{
|
||||||
_affectedPaths.Add(path);
|
_affectedPaths.Add(path);
|
||||||
@ -53,6 +58,11 @@ namespace MediaBrowser.Server.Implementations.IO
|
|||||||
|
|
||||||
public void AddPath(string path)
|
public void AddPath(string path)
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(path))
|
||||||
|
{
|
||||||
|
throw new ArgumentNullException("path");
|
||||||
|
}
|
||||||
|
|
||||||
lock (_timerLock)
|
lock (_timerLock)
|
||||||
{
|
{
|
||||||
AddAffectedPath(path);
|
AddAffectedPath(path);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user