Skip to content

Commit

Permalink
Update SDK to 1.4.7 (10.8 with enum backports)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed Apr 7, 2024
1 parent d4a2977 commit 8c45084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ detekt = "1.23.4"
gson = "2.8.9"
jellyfin-androidx-media = "1.2.1+1"
jellyfin-apiclient = "v0.7.10"
jellyfin-sdk = "1.4.6"
jellyfin-sdk = "1.4.7"
junit = "4.13.2"
koin = "3.5.0"
koin-compose = "3.5.0"
Expand Down
3 changes: 2 additions & 1 deletion playback/jellyfin/src/main/kotlin/mediastream/tracks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ fun MediaStream.getMediaStreamTrack() = when (type) {

// Ignore other track types
MediaStreamType.EMBEDDED_IMAGE,
MediaStreamType.DATA -> null
MediaStreamType.DATA,
MediaStreamType.LYRIC -> null
}

private fun getAudioTrack(stream: MediaStream) = MediaStreamAudioTrack(
Expand Down

0 comments on commit 8c45084

Please sign in to comment.