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 bc89932 commit 81dc252Copy full SHA for 81dc252
src/js/stores/notifications.js
@@ -26,9 +26,8 @@ var NotificationsStore = Reflux.createStore({
26
var participating = SettingsStore.getSettings().participating;
27
28
apiRequests
29
- .getAuth('https://api.github.com/notifications?participating=' + participating ?
30
- 'true' : 'false'
31
- )
+ .getAuth('https://api.github.com/notifications?participating=' +
+ (participating ? 'true' : 'false'))
32
.end(function (err, response) {
33
if (response && response.ok) {
34
// Success - Do Something.
0 commit comments