Skip to content

Commit 7b93d85

Browse files
fix error message
1 parent 771c7fb commit 7b93d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ParsePushAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class ParsePushAdapter {
2323
for (let pushType of pushTypes) {
2424
if (this.validPushTypes.indexOf(pushType) < 0) {
2525
throw new Parse.Error(Parse.Error.PUSH_MISCONFIGURED,
26-
'Push to ' + pushTypes + ' is not supported');
26+
'Push to ' + pushType + ' is not supported');
2727
}
2828
switch (pushType) {
2929
case 'ios':

0 commit comments

Comments
 (0)