Merge pull request #221 from PassTheMayo/patch-1

Fixed unnecessary logging when document not found
This commit is contained in:
John Crepezzi 2018-04-30 19:45:16 -04:00 committed by GitHub
commit d922667f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class RethinkDBStore {
this.client.table('uploads').get(md5(key)).run((error, result) => {
if (error || !result) {
callback(false);
winston.error('failed to insert to table', error);
if (error) winston.error('failed to insert to table', error);
return;
}
callback(result.data);