Compare commits

...

2 Commits

Author SHA1 Message Date
Bnyro b92473d149
Merge pull request #178 from TeamPiped/fix-dearrow-crash
fix: LibreTube crashes when loading DeArrow thumbnails
2024-05-06 12:37:40 +02:00
Bnyro 7320cd0b22 fix: LibreTube crashes when loading DeArrow thumbnails 2024-05-06 12:32:58 +02:00
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"
)
}