File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -433,6 +433,10 @@ private void Worker(object state)
433433 {
434434 response . ContentType = "application/zip" ;
435435 }
436+ else if ( url . ToLower ( ) . EndsWith ( ".webp" ) )
437+ {
438+ response . ContentType = "image/webp" ;
439+ }
436440 else if ( url . ToLower ( ) . EndsWith ( ".png" ) )
437441 {
438442 response . ContentType = "image/png" ;
@@ -457,6 +461,18 @@ private void Worker(object state)
457461 {
458462 response . ContentType = "audio/x-wav" ;
459463 }
464+ else if ( url . ToLower ( ) . EndsWith ( ".weba" ) )
465+ {
466+ response . ContentType = "audio/webm" ;
467+ }
468+ else if ( url . ToLower ( ) . EndsWith ( ".webm" ) )
469+ {
470+ response . ContentType = "video/webm" ;
471+ }
472+ else if ( url . ToLower ( ) . EndsWith ( ".mp4" ) )
473+ {
474+ response . ContentType = "video/mp4" ;
475+ }
460476 else if ( url . ToLower ( ) . EndsWith ( ".m3u8" ) )
461477 {
462478 response . ContentType = "application/x-mpegURL" ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ artifacts:
1818deploy :
1919 - provider : GitHub
2020 auth_token :
21- secure : EV/QbdjryLysyefCkxLXLBr4icYTdmOi+6wtgrB2mLfrP0qTQPiwj7w4L2i5fi7q
21+ secure : QJoBiqbeg1z+3WRoH1IdXRsnXtvwS95U2Z89JH9DrnEhJYMYbRpKjUmGEbOU3OnDLFz8gKqzP8y7KpL226lCb/Y+W6CTt7EGouenMIKnzZBllZVvSG73LdhHgD8RbxIy
2222 draft : false
2323 prerelease : false
2424 on :
You can’t perform that action at this time.
0 commit comments