mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 03:55:01 +01:00
combined usermanager and userdata manager
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using MediaBrowser.Controller;
|
||||
using MediaBrowser.Controller.Entities;
|
||||
using MediaBrowser.Controller.Entities.Audio;
|
||||
using MediaBrowser.Controller.Library;
|
||||
using MediaBrowser.Model.Dto;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
@@ -17,8 +18,8 @@ namespace MediaBrowser.Api.Playback.Progressive
|
||||
/// Initializes a new instance of the <see cref="BaseProgressiveStreamingService" /> class.
|
||||
/// </summary>
|
||||
/// <param name="appPaths">The app paths.</param>
|
||||
protected BaseProgressiveStreamingService(IServerApplicationPaths appPaths)
|
||||
: base(appPaths)
|
||||
protected BaseProgressiveStreamingService(IServerApplicationPaths appPaths, IUserManager userManager)
|
||||
: base(appPaths, userManager)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user