Skip to content

Commit 29a4d51

Browse files
committed
Fix bug
1 parent 6d6f7e0 commit 29a4d51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DynamoDBGenerator.SourceGenerator/Generations/UnMarshaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private static CodeFactory CreateMethod(ITypeSymbol type, Func<ITypeSymbol, Dyna
8383
.CreateScope(
8484
$"if ({Value} is null)"
8585
.CreateScope("return null;")
86-
.Append($"return {conversion}.Value;")
86+
.Append($"return {conversion};")
8787
)
8888
.ToConversion(),
8989
_ => CreateSignature(type, options)

0 commit comments

Comments
 (0)