Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/upstream/streaming' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasKaminsky committed Nov 1, 2015
2 parents ec83a9f + b71abc2 commit 0b54077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/owncloud/android/files/FileMenuFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private void filter(List<Integer> toShow, List <Integer> toHide) {
}

// STREAM
if (mFile != null && (mFile.isAudio() || mFile.isVideo())){
if (mFile != null && !mFile.isDown() && (mFile.isAudio() || mFile.isVideo())){
toShow.add(R.id.action_stream_file);
} else {
toHide.add(R.id.action_stream_file);
Expand Down

0 comments on commit 0b54077

Please sign in to comment.