Skip to content

Commit

Permalink
fix bug microsoft#82
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchx authored Aug 16, 2018
1 parent 65cafc8 commit 4887f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebJobBillingData/RecordDataReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private static string SerializeDictionary(IDictionary dictionary)
writer.WritePropertyName("Name");
writer.WriteValue(key.ToString());
writer.WritePropertyName("Value");
writer.WriteValue(value.ToString());
writer.WriteValue((value ?? "").ToString());
writer.WriteEndObject();
}
writer.WriteEndArray();
Expand Down

0 comments on commit 4887f11

Please sign in to comment.