Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/Core/Proxy.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Core/Proxy.cs b/LibGit2Sharp/Core/Proxy.cs
index 82979465..4850a0b5 100644
--- a/LibGit2Sharp/Core/Proxy.cs
+++ b/LibGit2Sharp/Core/Proxy.cs
@@ -2892,7 +2892,7 @@ namespace LibGit2Sharp.Core
Signature tagger = null;
if (taggerHandle != IntPtr.Zero)
{
- tagger = new Signature(NativeMethods.git_tag_tagger(tag));
+ tagger = new Signature(taggerHandle);
}
return tagger;