diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-25 23:38:21 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-25 23:38:21 -0500 |
| commit | 13563b604756152fe2f6630a4cb8fd2994e5bb62 (patch) | |
| tree | 367a886bcb57360e635da48046c87eaff243625d /MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | |
| parent | 7767580a3bff0d3a6ddc36b32784c0d49bb6b5f7 (diff) | |
Add upnp configuration
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs index fa1d4b0d5..cbc4a8c24 100644 --- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs +++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs @@ -39,7 +39,16 @@ namespace MediaBrowser.Server.Implementations.IO /// <summary> /// Any file name ending in any of these will be ignored by the watchers /// </summary> - private readonly IReadOnlyList<string> _alwaysIgnoreFiles = new List<string> { "thumbs.db", "small.jpg", "albumart.jpg" }; + private readonly IReadOnlyList<string> _alwaysIgnoreFiles = new List<string> + { + "thumbs.db", + "small.jpg", + "albumart.jpg", + + // WMC temp recording directories that will constantly be written to + "TempRec", + "TempSBE" + }; /// <summary> /// The timer lock |
