Skip to content

Commit bc89932

Browse files
author
Emmanouil Konstantinidis
committed
Fix tests
1 parent 9d73c4e commit bc89932

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/js/stores/notifications.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ var NotificationsStore = Reflux.createStore({
2626
var participating = SettingsStore.getSettings().participating;
2727

2828
apiRequests
29-
.getAuth('https://api.github.com/notifications?participating=' + participating ? 'true' : 'false')
29+
.getAuth('https://api.github.com/notifications?participating=' + participating ?
30+
'true' : 'false'
31+
)
3032
.end(function (err, response) {
3133
if (response && response.ok) {
3234
// Success - Do Something.

0 commit comments

Comments
 (0)