diff options
author | Jesús <heckyel@hyperbola.info> | 2021-08-30 00:24:41 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-30 00:24:41 -0500 |
commit | 4a45a699ae3bc92224fab1042e1c1377fb6a7c54 (patch) | |
tree | fc31383ec1877d1ab142a85875c9e9ccee18f902 /youtube/templates | |
parent | 7264bbeaed2ea83970c10da703ff0058592ff7f9 (diff) | |
download | yt-local-4a45a699ae3bc92224fab1042e1c1377fb6a7c54.tar.lz yt-local-4a45a699ae3bc92224fab1042e1c1377fb6a7c54.tar.xz yt-local-4a45a699ae3bc92224fab1042e1c1377fb6a7c54.zip |
fix "Security Error: Content, may not load data from blob"
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/base.html b/youtube/templates/base.html index 8795027..045d85d 100644 --- a/youtube/templates/base.html +++ b/youtube/templates/base.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> - <meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval'; media-src 'self' blob: https://*.googlevideo.com; {{ "img-src 'self' https://*.googleusercontent.com https://*.ggpht.com https://*.ytimg.com;" if not settings.proxy_images else "" }}"> + <meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval'; media-src 'self' blob: data: https://*.googlevideo.com; {{ "img-src 'self' https://*.googleusercontent.com https://*.ggpht.com https://*.ytimg.com;" if not settings.proxy_images else "" }}"> <title>{{ page_title }}</title> <link title="YT Local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"/> <link href="/youtube.com/static/favicon.ico" type="image/x-icon" rel="icon"/> |