Fixed regex preventing the reading of usernames containing dot characters in the LFS locks list.

This commit is contained in:
Mat 2025-01-13 22:30:20 +01:00
parent 5f4c1bb984
commit 8a0badf3e2

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