Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent date properties from being incorrectly cloned when specified as a projection #20

Closed
wants to merge 1 commit into from

Conversation

microadam
Copy link

With a document like:

.insert({ _id: 'a', date: new Date() })

and a find like:

.find({}, { fields: { date: 1 } })

Document is returned like:

{ date: {}, _id: 'a' }

This fixes the problem

@kofrasa
Copy link
Owner

kofrasa commented Nov 16, 2015

Thanks for the patch Adam. It will be nice if we could generalize this for other constructor based objects though. This looks like something that we may have to repeat for other user-defined types that are not simple objects. Doing so will also allow the Backbone integration to continue to work properly which also currently breaks as you have just revealed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants