Skip to content

Commit e3d36b7

Browse files
committed
Fix nit
1 parent f9ea269 commit e3d36b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dashboard/Push/PushNew.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export default class PushNew extends DashboardView {
201201
payload.alert = changes.data_type === 'json' ? JSON.parse(changes.data) : changes.data;
202202
payload.badge = !!changes.increment_badge;
203203
Parse.Push.send({
204-
where: changes.target ? changes.target : new Parse.Query(Parse.Installation),
204+
where: changes.target || new Parse.Query(Parse.Installation),
205205
data: payload,
206206
}, {
207207
useMasterKey: true,

0 commit comments

Comments
 (0)