Skip to content

Commit 2ae3a99

Browse files
committed
Fix date value initialization bug
1 parent 7593b53 commit 2ae3a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/DataType/Date.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public final class LCDate: NSObject, LCType, LCTypeExtension {
9292
return nil
9393
}
9494

95-
value = someValue
95+
self.value = someValue
9696
}
9797

9898
public required init?(coder aDecoder: NSCoder) {

0 commit comments

Comments
 (0)