re-throw exceptions from video thread

pull/50/head
cosmonaut 2023-06-29 11:30:16 -07:00
parent 4c731401ff
commit f761d4f76e
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ namespace MoonWorks.Video
{
if (task.Exception != null)
{
Logger.LogError(task.Exception.ToString());
throw task.Exception;
}
}