Skip to content

Commit

Permalink
Merge pull request #1890 from skel35/f/GH-1889-Fix-ApiKey-Remove
Browse files Browse the repository at this point in the history
(GH-1889) Fixes Equals implementation of ConfigFileApiKeySettings
  • Loading branch information
gep13 authored Apr 16, 2021
2 parents 4656042 + e89ee92 commit c157be0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public override bool Equals(object obj)
var item = (ConfigFileApiKeySetting) obj;

return (Source == item.Source)
&& (Key == item.Source);
&& (Key == item.Key);
}

public override int GetHashCode()
Expand Down

0 comments on commit c157be0

Please sign in to comment.