Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
always run the callback
Browse files Browse the repository at this point in the history
  • Loading branch information
bridiver committed Feb 25, 2017
1 parent db6cf28 commit b923567
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/browser/basicAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ const { makeImmutable } = require('../common/state/immutableUtil')
let authCallbacks = {}

const cleanupAuthCallback = (tabId) => {
const cb = authCallbacks[tabId]
cb && cb()
delete authCallbacks[tabId]
}

Expand Down

2 comments on commit b923567

@bbondy
Copy link
Member

@bbondy bbondy commented on b923567 Feb 28, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

@jonathansampson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.