Skip to content

Commit

Permalink
Fix nginx range request
Browse files Browse the repository at this point in the history
  • Loading branch information
SpookySkeletons committed Feb 1, 2025
1 parent a15abf4 commit a0bd245
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ index b7dc33c303c..12704169be7 100644
+ for (i = 0; i < gst_structure_n_fields(response_headers); i++)
+ {
+ const gchar *name = gst_structure_nth_field_name(response_headers, i);
+ if (!strcasecmp(name, "Accept-Ranges"))
+ if (!strcasecmp(name, "Accept-Ranges") || !strcasecmp(name, "Content-Range"))
+ {
+ found = true;
+ break;
Expand Down

0 comments on commit a0bd245

Please sign in to comment.