Skip to content

Commit e54f17d

Browse files
committed
Fix spelling errors in configuration keys
1 parent 8ed068e commit e54f17d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SourceGit/ViewModels/RepositoryConfigure.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public RepositoryConfigure(Repository repo)
4444
if (_cached.ContainsKey("user.email")) UserEmail = _cached["user.email"];
4545
if (_cached.ContainsKey("commit.gpgsign")) GPGSigningEnabled = _cached["commit.gpgsign"] == "true";
4646
if (_cached.ContainsKey("user.signingkey")) GPGUserSigningKey = _cached["user.signingkey"];
47-
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["user.signingkey"];
47+
if (_cached.ContainsKey("http.proxy")) HttpProxy = _cached["http.proxy"];
4848

4949
View = new Views.RepositoryConfigure() { DataContext = this };
5050
}

0 commit comments

Comments
 (0)