summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-04-09 09:33:36 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-04-09 09:33:36 -0700
commitc0f53872839540ae3479453e8914373a7ea835b5 (patch)
treefdd8f1a70c8ecb013cc273e1ceb6c0f9774a0bf6 /src
parent3da2b32be4604e1b9dea44d8a0f238b0f091860c (diff)
downloadDotNetOpenAuth-c0f53872839540ae3479453e8914373a7ea835b5.zip
DotNetOpenAuth-c0f53872839540ae3479453e8914373a7ea835b5.tar.gz
DotNetOpenAuth-c0f53872839540ae3479453e8914373a7ea835b5.tar.bz2
Fixed runtime exception caused by recent URI normalization work of the Identifier class.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/ComponentModel/IdentifierConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/ComponentModel/IdentifierConverter.cs b/src/DotNetOpenAuth/ComponentModel/IdentifierConverter.cs
index 6ba9c4b..61c0fd8 100644
--- a/src/DotNetOpenAuth/ComponentModel/IdentifierConverter.cs
+++ b/src/DotNetOpenAuth/ComponentModel/IdentifierConverter.cs
@@ -45,7 +45,7 @@ namespace DotNetOpenAuth.ComponentModel {
return null;
}
- MemberInfo identifierParse = typeof(Identifier).GetMethod("Parse", BindingFlags.Static | BindingFlags.Public);
+ MemberInfo identifierParse = typeof(Identifier).GetMethod("Parse", BindingFlags.Static | BindingFlags.Public, null, new Type[] { typeof(string) }, null);
return CreateInstanceDescriptor(identifierParse, new object[] { value.ToString() });
}