summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs b/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs
index c1e7aa2..462bb3c 100644
--- a/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs
+++ b/src/DotNetOpenAuth/Messaging/Reflection/MessagePart.cs
@@ -210,7 +210,7 @@ namespace DotNetOpenAuth.Messaging.Reflection {
internal string StaticConstantValue {
get {
Contract.Requires<InvalidOperationException>(this.IsConstantValueAvailableStatically);
- return this.ToString(this.field.GetValue(null));
+ return this.ToString(this.field.GetValue(null), false);
}
}