Skip to content

Commit

Permalink
Bugfix - loopbackio#34
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoftek committed Feb 26, 2017
1 parent 6ec9586 commit 1affbc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sqlite3.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ SQLite3.prototype.toColumnValue = function(property, value) {
};

SQLite3.prototype.fromColumnValue = function(property, value) {
if (value === null || !property) {
if (value == null || !property) {
return value;
}
switch (property.type.name) {
Expand Down

0 comments on commit 1affbc7

Please sign in to comment.