diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-03-08 14:19:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-08 14:19:39 -0500 |
| commit | 291cfccc2345c029539557d2d10e86a9b0f61d13 (patch) | |
| tree | 349f94f349197ef67f6f2705998696988153eeba | |
| parent | 6f6aa075d820f4d82009917b11d51344ac87f882 (diff) | |
| parent | 3f60e7c35d68a621a2074ed7ac568cfcc2588db9 (diff) | |
Merge pull request #2520 from MediaBrowser/beta
Beta
| -rw-r--r-- | Emby.Server.Core/IO/LibraryMonitor.cs | 2 | ||||
| -rw-r--r-- | Emby.Server.Implementations/IO/FileRefresher.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Api/Playback/Progressive/AudioService.cs | 3 |
3 files changed, 7 insertions, 6 deletions
diff --git a/Emby.Server.Core/IO/LibraryMonitor.cs b/Emby.Server.Core/IO/LibraryMonitor.cs index baa705111..4df9b930e 100644 --- a/Emby.Server.Core/IO/LibraryMonitor.cs +++ b/Emby.Server.Core/IO/LibraryMonitor.cs @@ -417,7 +417,7 @@ namespace Emby.Server.Core.IO { try { - Logger.Debug("Changed detected of type " + e.ChangeType + " to " + e.FullPath); + //Logger.Debug("Changed detected of type " + e.ChangeType + " to " + e.FullPath); var path = e.FullPath; diff --git a/Emby.Server.Implementations/IO/FileRefresher.cs b/Emby.Server.Implementations/IO/FileRefresher.cs index d7f2ffa43..c64672685 100644 --- a/Emby.Server.Implementations/IO/FileRefresher.cs +++ b/Emby.Server.Implementations/IO/FileRefresher.cs @@ -160,10 +160,10 @@ namespace Emby.Server.Implementations.IO .DistinctBy(i => i.Id) .ToList(); - foreach (var p in paths) - { - Logger.Info(p + " reports change."); - } + //foreach (var p in paths) + //{ + // Logger.Info(p + " reports change."); + //} // If the root folder changed, run the library task so the user can see it if (itemsToRefresh.Any(i => i is AggregateFolder)) diff --git a/MediaBrowser.Api/Playback/Progressive/AudioService.cs b/MediaBrowser.Api/Playback/Progressive/AudioService.cs index 56d48baea..a64523e40 100644 --- a/MediaBrowser.Api/Playback/Progressive/AudioService.cs +++ b/MediaBrowser.Api/Playback/Progressive/AudioService.cs @@ -31,7 +31,8 @@ namespace MediaBrowser.Api.Playback.Progressive /// <summary> /// Class AudioService /// </summary> - [Authenticated] + // TODO: In order to autheneticate this in the future, Dlna playback will require updating + //[Authenticated] public class AudioService : BaseProgressiveStreamingService { /// <summary> |
