fix: add missing setLogLevel handler to Android MPV plugin

This commit is contained in:
edde746
2026-02-19 11:33:12 +01:00
parent 89c7b79867
commit 60ef83bd3a
@@ -102,6 +102,7 @@ class MpvPlayerPlugin : FlutterPlugin, MethodChannel.MethodCallHandler,
"abandonAudioFocus" -> handleAbandonAudioFocus(result)
"openContentFd" -> handleOpenContentFd(call, result)
"isInitialized" -> result.success(playerCore?.isInitialized ?: false)
"setLogLevel" -> result.success(null)
else -> result.notImplemented()
}
}