Skip to content

Commit

Permalink
Fix insert one missing storage write
Browse files Browse the repository at this point in the history
  • Loading branch information
tspoke committed Mar 30, 2017
1 parent 5f138ba commit d3880c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public Observable<T> call(T item) {
.subscribe(new SimpleObserver<>(otherSubscriber));

subscriptions.add(s);
return Observable.just(object);
return storage.insertOrUpdate(object);
}

@Override
Expand Down

0 comments on commit d3880c1

Please sign in to comment.