Merge pull request #190 from PassTheMayo/patch-1

Oh noes! I didn't even notice that I had a typo...
This commit is contained in:
John Crepezzi 2017-12-11 10:51:12 -05:00 committed by GitHub
commit 8da37ea5de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ RethinkDBStore.md5 = (str) => {
RethinkDBStore.prototype.set = (key, data, callback) => {
try {
this.client.table('uploads').insert({ id: RethinkDBStore.md5(key), data: data }).run((error) =? {
this.client.table('uploads').insert({ id: RethinkDBStore.md5(key), data: data }).run((error) => {
if (error) return callback(false);
callback(true);
});