Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
drasticactions committed Nov 22, 2023
1 parent 20b24d8 commit aefde3a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/FishyFlip/Tools/Cbor/CborExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ internal static class CborExtensions
public static Embed ToEmbed(this CBORObject obj)
{
var type = obj["$type"].ToString() ?? string.Empty;
type = type.Replace("\"", string.Empty);
switch (type)
{
case Constants.EmbedTypes.Record:
Expand Down

0 comments on commit aefde3a

Please sign in to comment.