We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d73c4e commit bc89932Copy full SHA for bc89932
src/js/stores/notifications.js
@@ -26,7 +26,9 @@ var NotificationsStore = Reflux.createStore({
26
var participating = SettingsStore.getSettings().participating;
27
28
apiRequests
29
- .getAuth('https://api.github.com/notifications?participating=' + participating ? 'true' : 'false')
+ .getAuth('https://api.github.com/notifications?participating=' + participating ?
30
+ 'true' : 'false'
31
+ )
32
.end(function (err, response) {
33
if (response && response.ok) {
34
// Success - Do Something.
0 commit comments