We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d7cec commit da7c20cCopy full SHA for da7c20c
Assets/Plugins/CandyCoded.GitStatus/Scripts/CustomEditor/Git.cs
@@ -52,9 +52,7 @@ public static string[] Branches()
52
53
var branches = new List<string>();
54
55
- var stringReader = new StringReader(process?.StandardOutput.ReadToEnd());
56
-
57
- while (stringReader.ReadLine() is string line)
+ while (process?.StandardOutput.ReadLine() is string line)
58
{
59
60
branches.Add(line.Trim('\''));
0 commit comments