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 a5c25cf commit 4e41a62Copy full SHA for 4e41a62
src/Commands/QueryTags.cs
@@ -28,13 +28,14 @@ public QueryTags(string repo)
28
if (subs.Length != 5)
29
continue;
30
31
+ var name = subs[0].Substring(10);
32
var message = subs[4].Trim();
33
tags.Add(new Models.Tag()
34
{
- Name = subs[0].Substring(10),
35
+ Name = name,
36
SHA = string.IsNullOrEmpty(subs[2]) ? subs[1] : subs[2],
37
CreatorDate = ulong.Parse(subs[3]),
- Message = string.IsNullOrEmpty(message) ? null : message,
38
+ Message = string.IsNullOrEmpty(message) ? name : message,
39
});
40
}
41
0 commit comments