Unverified Commit ff0fccd6 authored by Jacob Gunther's avatar Jacob Gunther Committed by GitHub
Browse files

Oh noes! I didn't even notice that I had a typo...

parent 63c45766
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
    });