Skip to content

Commit e912cc1

Browse files
author
Elad Zelingher
committed
Fixing IsValidTupleType recursion
1 parent c5237c3 commit e912cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net45/WampSharp/Core/Utilities/ValueTuple/ValueTupleTypeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static bool IsValidTupleType(this Type tupleType)
6767
{
6868
Type rest = tupleType.GetGenericArguments().Last();
6969

70-
if (!rest.IsValueTuple())
70+
if (!rest.IsValidTupleType())
7171
{
7272
return false;
7373
}

0 commit comments

Comments
 (0)