Merge pull request #197 from DavidARussell/issue131_fileFormat_display

Use original file type for display formatting
master
Tom Powell 8 years ago committed by GitHub
commit f402731ce7
  1. 2
      libresonic-main/src/main/java/org/libresonic/player/ajax/PlayQueueService.java

@ -697,7 +697,7 @@ public class PlayQueueService {
}
private String formatFormat(Player player, MediaFile file) {
return transcodingService.getSuffix(player, file, null);
return file.getFormat();
}
private String formatContentType(String format) {

Loading…
Cancel
Save