Skip to content

Commit

Permalink
Bug 1323845: Follow-up: Fix more bustage. r=bustage
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: 4YNzTYNy0Hh
  • Loading branch information
kmaglione committed Jan 13, 2018
1 parent edd4e0e commit e87cff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolkit/components/extensions/Extension.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,8 @@ class ExtensionData {

// Normalize all patterns to contain a single leading /
if (manifest.web_accessible_resources) {
webAccessibleResources = manifest.web_accessible_resources
.map(path => path.replace(/^\/*/, "/"));
webAccessibleResources.push(...manifest.web_accessible_resources
.map(path => path.replace(/^\/*/, "/")));
}
} else if (this.type == "langpack") {
// Compute the chrome resources to be registered for this langpack
Expand Down

0 comments on commit e87cff4

Please sign in to comment.