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 8ed068e commit e54f17dCopy full SHA for e54f17d
src/SourceGit/ViewModels/RepositoryConfigure.cs
@@ -44,7 +44,7 @@ public RepositoryConfigure(Repository repo)
44
if (_cached.ContainsKey("user.email")) UserEmail = _cached["user.email"];
45
if (_cached.ContainsKey("commit.gpgsign")) GPGSigningEnabled = _cached["commit.gpgsign"] == "true";
46
if (_cached.ContainsKey("user.signingkey")) GPGUserSigningKey = _cached["user.signingkey"];
47
- if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["user.signingkey"];
+ if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["http.proxy"];
48
49
View = new Views.RepositoryConfigure() { DataContext = this };
50
}
0 commit comments