Merge pull request #9364 from shikhar-scs/change-decodeURI-to-decodeURIcomponent
changed decodeURI to decodeURIComponent: Fixes #8987
This commit is contained in:
commit
1ad33c4514
@ -365,7 +365,7 @@ class PDFNodeStreamFsFullReader extends BaseFullReader {
|
|||||||
constructor(stream) {
|
constructor(stream) {
|
||||||
super(stream);
|
super(stream);
|
||||||
|
|
||||||
let path = decodeURI(this._url.path);
|
let path = decodeURIComponent(this._url.path);
|
||||||
|
|
||||||
// Remove the extra slash to get right path from url like `file:///C:/`
|
// Remove the extra slash to get right path from url like `file:///C:/`
|
||||||
if (fileUriRegex.test(this._url.href)) {
|
if (fileUriRegex.test(this._url.href)) {
|
||||||
@ -392,7 +392,7 @@ class PDFNodeStreamFsRangeReader extends BaseRangeReader {
|
|||||||
constructor(stream, start, end) {
|
constructor(stream, start, end) {
|
||||||
super(stream);
|
super(stream);
|
||||||
|
|
||||||
let path = decodeURI(this._url.path);
|
let path = decodeURIComponent(this._url.path);
|
||||||
|
|
||||||
// Remove the extra slash to get right path from url like `file:///C:/`
|
// Remove the extra slash to get right path from url like `file:///C:/`
|
||||||
if (fileUriRegex.test(this._url.href)) {
|
if (fileUriRegex.test(this._url.href)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user