From f761d4f76eb0326645d12bdd176a3f3336229e10 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 29 Jun 2023 11:30:16 -0700 Subject: [PATCH] re-throw exceptions from video thread --- src/Video/VideoPlayer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Video/VideoPlayer.cs b/src/Video/VideoPlayer.cs index 016d7df..e7c7664 100644 --- a/src/Video/VideoPlayer.cs +++ b/src/Video/VideoPlayer.cs @@ -271,7 +271,7 @@ namespace MoonWorks.Video { if (task.Exception != null) { - Logger.LogError(task.Exception.ToString()); + throw task.Exception; } }