Skip to content

Commit 48e14ec

Browse files
committed
Fix build
1 parent 34e7692 commit 48e14ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Serilog.Sinks.AzureTableStorage/Sinks/AzureTableStorageWithProperties/AzurePropertyFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static EntityProperty ToEntityProperty(LogEventPropertyValue value, strin
6565

6666
private static EntityProperty SimplifyScalar(object value)
6767
{
68-
if (value == null) return new EntityProperty(null);
68+
if (value == null) return new EntityProperty((byte[])null);
6969

7070
var valueType = value.GetType();
7171

0 commit comments

Comments
 (0)