Skip to content

Commit

Permalink
v1.2.13
Browse files Browse the repository at this point in the history
- set MIME type to *video/mp2t* for *.ts*
  • Loading branch information
genemars committed Sep 4, 2023
1 parent ba01454 commit 996e0a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MIG/Gateways/WebServiceGateway.cs
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,10 @@ private void Worker(object state)
{
response.ContentType = "application/x-mpegURL";
}
else if (url.ToLower().EndsWith(".ts"))
{
response.ContentType = "video/mp2t";
}
else if (url.ToLower().EndsWith(".appcache"))
{
response.ContentType = "text/cache-manifest";
Expand Down

0 comments on commit 996e0a7

Please sign in to comment.