mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 04:43:07 +00:00
remove filter that excluded everything but videos for recordings
This commit is contained in:
parent
ec01415b1f
commit
a8a0be2c06
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ public class EventsDetailsFragment extends DetailsFragment {
|
|||
if(recordings != null){
|
||||
for(int i = 0; i < recordings.size(); i++){
|
||||
Recording recording = recordings.get(i);
|
||||
if(recording.getMimeType().startsWith("video/")){
|
||||
if(recording.getMimeType().startsWith("video/") || true){
|
||||
String quality = recording.isHighQuality() ? "HD" : "SD";
|
||||
String title = quality + " (" + recording.getLanguage() + ")";
|
||||
actionsAdapter.add(new Action(recording.getApiID(), title, recording.getMimeType().substring(6)));
|
||||
|
|
Loading…
Reference in a new issue