Skip to content

Commit

Permalink
use correct mime type for markdown zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
nruffing committed Nov 23, 2023
1 parent 8319cc7 commit ac436a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public ActionResult GetMarkdown()
return NoContent();
}

return File(bytes, "application/xml; charset=utf-8", $"{MarkdownCacheKey}.zip");
return File(bytes, "application/zip", $"{MarkdownCacheKey}.zip");
}
}
}

0 comments on commit ac436a2

Please sign in to comment.