diff options
| author | Bond-009 <bond.009@outlook.com> | 2025-11-17 14:09:03 -0500 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2025-11-17 14:09:03 -0500 |
| commit | d7f628677e45cca6a4c34b57ff37a4d81e19277f (patch) | |
| tree | 01ddc8f986edc138f336491f3ff7a46e5c8d8639 /MediaBrowser.Common/Configuration | |
| parent | e51680cf56f423c0401dad87e030be48337af5cb (diff) | |
Backport pull request #15466 from jellyfin/release-10.11.z
Don't error out when searching for marker files fails
Original-merge: f4a846aa4dcffb3be7b701f806b24cb8dd6b7c5d
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Bond_009 <bond.009@outlook.com>
Diffstat (limited to 'MediaBrowser.Common/Configuration')
| -rw-r--r-- | MediaBrowser.Common/Configuration/IApplicationPaths.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Configuration/IApplicationPaths.cs b/MediaBrowser.Common/Configuration/IApplicationPaths.cs index 6d1a72b04..3a6197490 100644 --- a/MediaBrowser.Common/Configuration/IApplicationPaths.cs +++ b/MediaBrowser.Common/Configuration/IApplicationPaths.cs @@ -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); } } |
