You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2019. It is now read-only.
It works only for few scrolls, then ( I guess when the cache is not big enough) it calls startAt with 2 arguments, the second being the key if the sorting field is '$key'. And Firebase does not like having 2 arguments in startAt on an orderByKey query.
I put there a kind of fix in firebase-util-tweaked.js, replacing all startAt(key.val, key.key) by startAt(key.val, this.field === '$key' ? undefined : key.key) (approximately), please tell me if I should make a PR of it.