Skip to content

Commit 43d8827

Browse files
authored
Merge pull request #35 from moriyoshi/fix-issue-metadata-map-type
Fix type for Issue.Metadata (closes #33)
2 parents 8175592 + 8fc10b6 commit 43d8827

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)