diff options
Diffstat (limited to 'lib/WWW')
-rw-r--r-- | lib/WWW/FairViewer.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/WWW/FairViewer.pm b/lib/WWW/FairViewer.pm index 037f469..ffd8c93 100644 --- a/lib/WWW/FairViewer.pm +++ b/lib/WWW/FairViewer.pm @@ -889,8 +889,7 @@ sub get_streaming_urls { my @caption_urls; if (exists $info{player_response}) { - require URI::Escape; - my $captions_json = URI::Escape::uri_unescape($info{player_response}); + my $captions_json = $info{player_response}; # don't run uri_unescape() on this my $caption_data = $self->parse_json_string($captions_json); if (eval { ref($caption_data->{captions}{playerCaptionsTracklistRenderer}{captionTracks}) eq 'ARRAY' }) { |