Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
Tor Browser
Commits
d055a229
Commit
d055a229
authored
Oct 30, 2019
by
Alex Catarineu
Committed by
Georg Koppen
Aug 19, 2020
Browse files
Bug 27604: Fix addon issues when moving TB directory
parent
022d8c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
toolkit/mozapps/extensions/internal/XPIProvider.jsm
View file @
d055a229
...
...
@@ -485,7 +485,7 @@ class XPIState {
// Builds prior to be 1512436 did not include the rootURI property.
// If we're updating from such a build, add that property now.
if (
!("rootURI" in this) &&
this.file) {
if (this.file) {
this.rootURI = getURIForResourceInFile(this.file, "").spec;
}
...
...
@@ -498,7 +498,10 @@ class XPIState {
saved.currentModifiedTime != this.lastModifiedTime
) {
this.lastModifiedTime = saved.currentModifiedTime;
} else if (saved.currentModifiedTime === null) {
} else if (
saved.currentModifiedTime === null &&
(!this.file || !this.file.exists())
) {
this.missing = true;
}
}
...
...
@@ -1439,6 +1442,7 @@ var XPIStates = {
if (oldState[loc.name]) {
loc.restore(oldState[loc.name]);
changed = changed || loc.path != oldState[loc.name].path;
}
changed = changed || loc.changed;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment