Skip to content

Commit 50e7c7b

Browse files
committed
fix nullable
1 parent cc7518f commit 50e7c7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SharpFM.Core/FileMakerClip.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public IEnumerable<FileMakerField> Fields
9292

9393
var clipType = ClipTypes.SingleOrDefault(ct => ct.KeyId == ClipboardFormat);
9494

95-
switch (clipType.DisplayName)
95+
switch (clipType?.DisplayName)
9696
{
9797
case "Table": // When we have a table, we can get rich metadata from the clipboard data.
9898
return xdoc

0 commit comments

Comments
 (0)