chore: Disable audio player on linux
This commit is contained in:
parent
680dd886d8
commit
1398612190
1 changed files with 6 additions and 3 deletions
|
|
@ -112,9 +112,12 @@ class MessageContent extends StatelessWidget {
|
||||||
case CuteEventContent.eventType:
|
case CuteEventContent.eventType:
|
||||||
return CuteContent(event);
|
return CuteContent(event);
|
||||||
case MessageTypes.Audio:
|
case MessageTypes.Audio:
|
||||||
if (PlatformInfos.isMobile ||
|
if (PlatformInfos.isMobile || PlatformInfos.isMacOS
|
||||||
PlatformInfos.isMacOS ||
|
// || latformInfos.isLinux
|
||||||
PlatformInfos.isLinux) {
|
// disabled until
|
||||||
|
// https://github.com/bleonard252/just_audio_mpv/issues/3 is
|
||||||
|
// fixed
|
||||||
|
) {
|
||||||
return AudioPlayerWidget(
|
return AudioPlayerWidget(
|
||||||
event,
|
event,
|
||||||
color: textColor,
|
color: textColor,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue