Skip to content

Commit ddc180c

Browse files
authored
Merge pull request #8 from imarian97/patch-1
Update query.js Critical Bug Fix
2 parents da1da84 + edc24b4 commit ddc180c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export const watchEvent = (firebase, dispatch, event, path, dest, onlyLastEvent
219219

220220
// Get list of populates
221221
const populates = filter(params, param =>
222-
params.indexOf('populate') !== -1
222+
param.indexOf('populate') !== -1
223223
).map(p => p.split('=')[1])
224224

225225
// Dispatch standard if no populates

0 commit comments

Comments
 (0)