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 3ac803d commit ce10493Copy full SHA for ce10493
src/Commands/QueryStashes.cs
@@ -19,7 +19,7 @@ public QueryStashes(string repo)
19
if (!rs.IsSuccess)
20
return outs;
21
22
- var items = rs.StdOut.Split('\0', System.StringSplitOptions.RemoveEmptyEntries);
+ var items = rs.StdOut.Split('\0', StringSplitOptions.RemoveEmptyEntries);
23
foreach (var item in items)
24
{
25
var current = new Models.Stash();
0 commit comments