提交 de3d9a7d 编写于 作者: R Rafael Rosa

chore: update for check if is not null

上级 5d31ee86
......@@ -347,7 +347,10 @@ internal partial class HtmlMediaPlayer : Border
}
OnSourceLoaded?.Invoke(this, EventArgs.Empty);
IsPause = NativeMethods.GetPaused(_activeElement.HtmlId);
if (_activeElement != null)
{
IsPause = NativeMethods.GetPaused(_activeElement.HtmlId);
}
_isPlaying = !IsPause;
OnStatusChanged?.Invoke(this, EventArgs.Empty);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册