Skip to content

Commit 8fc10b6

Browse files
committed
Fix type for Issue.Metadata. Closes #33
1 parent 8175592 commit 8fc10b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

issue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ type Issue struct {
9696
LastSeen *time.Time `json:"lastSeen,omitempty"`
9797
Level *string `json:"level,omitempty"`
9898
Logger *string `json:"logger,omitempty"`
99-
Metadata *map[string]string `json:"metadata,omitempty"`
99+
Metadata *map[string]interface{} `json:"metadata,omitempty"`
100100
NumComments *int `json:"numComments,omitempty"`
101101
Permalink *string `json:"permalink,omitempty"`
102102
Project *Project `json:"project,omitempty"`

0 commit comments

Comments
 (0)