Don't error out when searching for marker files fails (#15466)

Fixes #15445
This commit is contained in:
Bond-009
2025-11-11 23:45:47 +01:00
committed by GitHub
parent 7c1063177f
commit f4a846aa4d
2 changed files with 14 additions and 4 deletions

View File

@@ -103,11 +103,11 @@ namespace MediaBrowser.Common.Configuration
void MakeSanityCheckOrThrow();
/// <summary>
/// Checks and creates the given path and adds it with a marker file if non existant.
/// Checks and creates the given path and adds it with a marker file if non existent.
/// </summary>
/// <param name="path">The path to check.</param>
/// <param name="markerName">The common marker file name.</param>
/// <param name="recursive">Check for other settings paths recursivly.</param>
/// <param name="recursive">Check for other settings paths recursively.</param>
void CreateAndCheckMarker(string path, string markerName, bool recursive = false);
}
}