Skip to content

Commit 030e889

Browse files
Merge pull request #64 from parse-server-modules/error-message-fix
fix error message
2 parents 771c7fb + 7b93d85 commit 030e889

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)