Merge pull request #35 from walterlv/master

Fix spelling errors in configuration keys
This commit is contained in:
leo
2024-03-28 16:40:03 +08:00
committed by GitHub

View File

@@ -44,7 +44,7 @@ namespace SourceGit.ViewModels
if (_cached.ContainsKey("user.email")) UserEmail = _cached["user.email"];
if (_cached.ContainsKey("commit.gpgsign")) GPGSigningEnabled = _cached["commit.gpgsign"] == "true";
if (_cached.ContainsKey("user.signingkey")) GPGUserSigningKey = _cached["user.signingkey"];
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["user.signingkey"];
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["http.proxy"];
View = new Views.RepositoryConfigure() { DataContext = this };
}