diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-28 22:28:02 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-28 22:28:02 -0400 |
| commit | 1aa7eb4c6276ac80b3a77f66afb244083bdb77a4 (patch) | |
| tree | ecb35bd2ff2f2c66b6754d0c6a2cdd145f2a792e /MediaBrowser.Server.Implementations/Dto/DtoService.cs | |
| parent | 5e5b1f180c2a13152c8f318f045547c6508c5b3e (diff) | |
implement direct play profile edit
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Dto/DtoService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs index 1833b708fc..2e0b3cb172 100644 --- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs +++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs @@ -1297,7 +1297,7 @@ namespace MediaBrowser.Server.Implementations.Dto { var result = new List<MediaSourceInfo> { - GetVersionInfo(item, true) + GetVersionInfo(item) }; return result; @@ -1321,7 +1321,7 @@ namespace MediaBrowser.Server.Implementations.Dto }; } - private MediaSourceInfo GetVersionInfo(Audio i, bool isPrimary) + private MediaSourceInfo GetVersionInfo(Audio i) { return new MediaSourceInfo { |
