1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fixed raw vs download content types.

This commit is contained in:
Uncled1023 2016-01-23 16:02:40 -08:00
parent c3cd74d29e
commit ea22ac0827

View File

@ -80,7 +80,7 @@ namespace Teknik.Areas.Paste.Controllers
case "simple":
return View("~/Areas/Paste/Views/Paste/Simple.cshtml", model);
case "raw":
return Content(model.Content, "application/octet-stream");
return Content(model.Content, "text/plain");
case "download":
//Create File
var cd = new System.Net.Mime.ContentDisposition
@ -91,7 +91,7 @@ namespace Teknik.Areas.Paste.Controllers
Response.AppendHeader("Content-Disposition", cd.ToString());
return File(data, "text/plain");
return File(data, "application/octet-stream");
default:
return View("~/Areas/Paste/Views/Paste/Full.cshtml", model);
}