Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 56991c0

Browse files
committed
Fix for SL5
1 parent 26b1d13 commit 56991c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/AutoMappingUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static object ChangeTo(this string strValue, Type type)
8787
{
8888
try
8989
{
90-
return Convert.ChangeType(strValue, type);
90+
return Convert.ChangeType(strValue, type, provider: null);
9191
}
9292
catch (Exception ex)
9393
{

0 commit comments

Comments
 (0)