<!--- Please note this repository's Issue Tracker is not being watched. Issues are instead being tracked in our public Jira project: https://jira.mongodb.org/projects/VSCODE/summary --> <!--- Provide a general summary of the issue in the Title above --> ## Bug Report #### Current Behavior <!--- A clear and concise description of the behavior --> When viewing a document containing an Int64 value, the document viewer will display the value probably as a double ( #746 ) #### Code/Gist <!--- Any code, gist links, or repo links you have available that would be helpful for debugging --> This is the document displayed via MongoDB interface - `guild_id` is an Int64: ``` { "_id": { "$oid": "64a81216fc3208ccee8ec5f3" }, "guild_id": 818617667421601852 } ``` This is what I see when viewing it via the plugin in VSCode: ``` { "_id": { "$oid": "64a81216fc3208ccee8ec5f3" }, "guild_id": 818617667421601800 } ``` #### Expected Behavior/Code <!--- A clear and concise description of what you expected to happen (or code). --> Display Int64 values as they are stored in the database #### Environment <!-- - node.js / npm versions: [e.g. node v10.3.0 / npm 6.7.1] - OS: [e.g. OSX 10.13.4, Windows 10] --> - node.js / npm versions: - - MongoDB for VS Code: 1.6.0 - OS: Windows 10 #### Possible Solution <!--- Only if you have suggestions on a fix for the bug --> #### Additional Context/Screenshots <!--- Add any other context about the problem here. If applicable, add screenshots to help explain. -->