mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Merge pull request #2483 from xosdy/fix-download-filename
Fix download file with non-ASCII filename
This commit is contained in:
commit
20ac3c36e2
1 changed files with 1 additions and 1 deletions
|
@ -815,7 +815,7 @@ namespace MediaBrowser.Api.Library
|
|||
if (!string.IsNullOrWhiteSpace(filename))
|
||||
{
|
||||
// Kestrel doesn't support non-ASCII characters in headers
|
||||
if (Regex.IsMatch(filename, "[^[:ascii:]]"))
|
||||
if (Regex.IsMatch(filename, @"[^\p{IsBasicLatin}]"))
|
||||
{
|
||||
// Manually encoding non-ASCII characters, following https://tools.ietf.org/html/rfc5987#section-3.2.2
|
||||
headers[HeaderNames.ContentDisposition] = "attachment; filename*=UTF-8''" + WebUtility.UrlEncode(filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue