fix: LibreTube crashes when loading DeArrow thumbnails

This commit is contained in:
Bnyro 2024-05-06 12:32:58 +02:00
parent f0a5da9dcb
commit 7320cd0b22
1 changed files with 2 additions and 0 deletions

View File

@ -124,6 +124,8 @@ fn is_header_allowed(header: &str) -> bool {
| "x-real-ip"
| "origin"
| "referer"
// the 'x-title' header contains non-ascii characters which is not allowed on some HTTP clients
| "x-title"
)
}