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.
%(creatordata)
1 parent 4e555f9 commit ff15420Copy full SHA for ff15420
src/Commands/QueryTags.cs
@@ -40,14 +40,14 @@ public QueryTags(string repo)
40
IsAnnotated = subs[1].Equals("tag", StringComparison.Ordinal),
41
SHA = string.IsNullOrEmpty(subs[3]) ? subs[2] : subs[3],
42
Creator = Models.User.FindOrAdd(subs[4]),
43
- CreatorDate = ulong.Parse(subs[5]),
+ CreatorDate = string.IsNullOrEmpty(subs[5]) ? 0 : ulong.Parse(subs[5]),
44
Message = message,
45
});
46
}
47
48
return tags;
49
50
51
- private string _boundary = string.Empty;
+ private readonly string _boundary;
52
53
0 commit comments