Skip to content

Commit

Permalink
Expose breadcrumb fields for callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
martin308 committed Aug 1, 2018
1 parent cc979c8 commit bdf2cec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BugsnagUnity/Payload/Breadcrumb.cs
Expand Up @@ -102,10 +102,10 @@ public Breadcrumb(string name, BreadcrumbType type, IDictionary<string, string>
this.AddToPayload("type", breadcrumbType);
}

internal string Name { get { return this.Get("name") as string; } }
public string Name { get { return this.Get("name") as string; } }

internal string Type { get { return this.Get("type") as string; } }
public string Type { get { return this.Get("type") as string; } }

internal IDictionary<string, string> Metadata { get { return this.Get("metaData") as IDictionary<string, string>; } }
public IDictionary<string, string> Metadata { get { return this.Get("metaData") as IDictionary<string, string>; } }
}
}

0 comments on commit bdf2cec

Please sign in to comment.