Skip to content

Commit

Permalink
fix type of Device.GroupName to string from bool (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
koizuka committed Jul 18, 2023
1 parent 09ad76f commit 7a83832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion device.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type Device struct {
IsGrouped bool `json:"group"`
IsMaster bool `json:"master"`
OpenDirection string `json:"openDirection"`
GroupName bool `json:"groupName"` // is this Boolean, right?
GroupName string `json:"groupName"`
LockDeviceIDs []string `json:"lockDeviceIds"`
LockDeviceID string `json:"lockDeviceId"`
KeyList []KeyListItem `json:"keyList"`
Expand Down

0 comments on commit 7a83832

Please sign in to comment.