mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-17 04:30:13 +00:00
Merge pull request #369 from nolimet/bugfix/issue#368
Fix for issue #368 UnityWebRequestException extra line in exception message
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#if ENABLE_UNITYWEBREQUEST && (!UNITY_2019_1_OR_NEWER || UNITASK_WEBREQUEST_SUPPORT)
|
||||
#if ENABLE_UNITYWEBREQUEST && (!UNITY_2019_1_OR_NEWER || UNITASK_WEBREQUEST_SUPPORT)
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@@ -49,7 +49,7 @@ namespace Cysharp.Threading.Tasks
|
||||
{
|
||||
if (msg == null)
|
||||
{
|
||||
if (Text != null)
|
||||
if(!string.IsNullOrWhiteSpace(Text))
|
||||
{
|
||||
msg = Error + Environment.NewLine + Text;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user