aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/BaseApiService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-12 16:32:13 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-12 16:32:13 -0500
commite4f5a3f005a240b013194d6a54edce29fef91e11 (patch)
tree5863ad289716049ec73a215aed49d78c56384a5e /MediaBrowser.Api/BaseApiService.cs
parent17962f2e61b29276300cadd0a1055f7a56e4a564 (diff)
added full m3u8 generation
Diffstat (limited to 'MediaBrowser.Api/BaseApiService.cs')
-rw-r--r--MediaBrowser.Api/BaseApiService.cs11
1 files changed, 3 insertions, 8 deletions
diff --git a/MediaBrowser.Api/BaseApiService.cs b/MediaBrowser.Api/BaseApiService.cs
index 62fcbd280..8febe4a65 100644
--- a/MediaBrowser.Api/BaseApiService.cs
+++ b/MediaBrowser.Api/BaseApiService.cs
@@ -1,13 +1,13 @@
-using System.IO;
-using MediaBrowser.Controller.Entities;
+using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Logging;
+using ServiceStack.Web;
using System;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
-using ServiceStack.Web;
namespace MediaBrowser.Api
{
@@ -52,11 +52,6 @@ namespace MediaBrowser.Api
return ResultFactory.GetOptimizedResult(Request, result);
}
- protected object ToStreamResult(Stream stream, string contentType)
- {
- return ResultFactory.GetResult(stream, contentType);
- }
-
/// <summary>
/// To the optimized result using cache.
/// </summary>