fix: LFS locks do not show if user name contains . character (#902)

This commit is contained in:
Mat 2025-01-14 03:18:56 +01:00 committed by GitHub
parent 5f4c1bb984
commit 011f5258ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ namespace SourceGit.Commands
{
public partial class LFS
{
[GeneratedRegex(@"^(.+)\s+(\w+)\s+\w+:(\d+)$")]
[GeneratedRegex(@"^(.+)\s+([\w.]+)\s+\w+:(\d+)$")]
private static partial Regex REG_LOCK();
class SubCmd : Command