Skip to content

Commit

Permalink
Fix a compile error in Unity 2018 and 2019, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Apr 1, 2021
1 parent 771679e commit a3a35e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/YarnSpinnerEditorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private static void EditorUpdate()
#if UNITY_2020_1_OR_NEWER
isError = supportersRequest.result != UnityWebRequest.Result.Success;
#else
isError = supportersRequest.isNetworkError || supportersRequest.isHttpError
isError = supportersRequest.isNetworkError || supportersRequest.isHttpError;
#endif

if (isError)
Expand Down

0 comments on commit a3a35e8

Please sign in to comment.