Change played to watched

This commit is contained in:
Nathan Schulzke 2021-07-27 13:26:51 -06:00
parent 7fd2ebc252
commit 2b41f710a8
4 changed files with 7 additions and 7 deletions

View file

@ -98,9 +98,9 @@ public enum StreamDialogEntry {
ShareUtils.openUrlInBrowser(fragment.getContext(), item.getUrl())),
mark_as_played(R.string.mark_as_played, (fragment, item) -> {
mark_as_watched(R.string.mark_as_watched, (fragment, item) -> {
new HistoryRecordManager(fragment.getContext())
.markAsPlayed(item)
.markAsWatched(item)
.onErrorComplete()
.observeOn(AndroidSchedulers.mainThread())
.subscribe();