Skip to content

Commit

Permalink
fix(android): resolve compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofMoch committed Jul 15, 2024
1 parent 0104fbb commit 5cd5e5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ enum class AudioOutput(private val outputName: String, @C.StreamType val streamT
companion object {
@JvmStatic
fun get(name: String): AudioOutput {
for (entry in entries) {
for (entry in values()) {
if (entry.outputName.equals(name, ignoreCase = true)) {
return entry
}
Expand Down

0 comments on commit 5cd5e5e

Please sign in to comment.