mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Issue #1183 - Fix incorrect conditional preventing Discover Error Page from showing up
This commit is contained in:
parent
8ad0b46284
commit
f256af1571
1 changed files with 1 additions and 1 deletions
|
|
@ -2153,7 +2153,7 @@ var gDiscoverView = {
|
|||
Ci.nsIWebProgressListener.STATE_IS_REQUEST |
|
||||
Ci.nsIWebProgressListener.STATE_TRANSFERRING;
|
||||
// Once transferring begins show the content
|
||||
if (aStateFlags & transferStart)
|
||||
if ((aStateFlags & transferStart) === transferStart)
|
||||
this.node.selectedPanel = this._browser;
|
||||
|
||||
// Only care about the network events
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue