Skip to content

Commit

Permalink
Fix DOMFilterFactory.#createUrl in MOZCENTRAL builds (18417 PR foll…
Browse files Browse the repository at this point in the history
…ow-up)

Somehow I managed to mess up the URL creation relevant to e.g. MOZCENTRAL builds, which is breaking the pending PDF.js update in mozilla-central; sorry about that!
  • Loading branch information
Snuffleupagus committed Jul 13, 2024
1 parent df5bc54 commit 2f6551d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display/display_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class DOMFilterFactory extends BaseFilterFactory {
}
return `url(${this.#baseUrl}#${id})`;
}
return `url(${id})`;
return `url(#${id})`;
}

addFilter(maps) {
Expand Down

0 comments on commit 2f6551d

Please sign in to comment.