Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moneytoo committed Jul 28, 2024
1 parent 4c96e00 commit f3fd1d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
applicationId "com.brouken.player"
minSdkVersion 21
targetSdkVersion 34
versionCode 165
versionCode 166
versionName "0.${versionCode}"
archivesBaseName = "Just.Player.v${versionName}"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public String getTrackName(Format format) {
}

private String formatNameFromMime(final String mimeType) {
if (mimeType == null) {
return null;
}
switch (mimeType) {
case MimeTypes.AUDIO_DTS:
return "DTS";
Expand Down

1 comment on commit f3fd1d5

@Nitrovenom
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you upload latest version to fdroid?

Please sign in to comment.