Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
Merge branch 'dev' into shuffle-albums
Browse files Browse the repository at this point in the history
  • Loading branch information
willcoughlin committed Oct 12, 2017
2 parents a3326a4 + 59afac0 commit 4793bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -8,7 +8,7 @@ android:
components:
- tools
- platform-tools
- build-tools-26.0.0
- build-tools-26.0.2
- android-26
- extra-android-support
- extra-android-m2repository
Expand Down
Expand Up @@ -278,7 +278,7 @@ private Observable<List<BlacklistedSong>> getBlacklistRelay() {
blacklistSubscription = getBlacklistDatabase()
.createQuery(BlacklistDbOpenHelper.TABLE_SONGS, "SELECT * FROM " + BlacklistDbOpenHelper.TABLE_SONGS)
.mapToList(BlacklistedSong::new)
.subscribe(blacklistRelay, error -> LogUtils.logException(TAG, "getBlacklistRelay threw rror", error));
.subscribe(blacklistRelay, error -> LogUtils.logException(TAG, "getBlacklistRelay threw error", error));
}
return blacklistRelay.subscribeOn(Schedulers.io()).map(ArrayList::new);
}
Expand Down

0 comments on commit 4793bda

Please sign in to comment.