mirror of https://github.com/velour/catbase.git
beers: make untappd icons square
* Added all image formats to checkin structure * Changed which image is selected for display in the channel
This commit is contained in:
parent
4122dc6b48
commit
a4abcb4bc1
|
@ -297,6 +297,9 @@ type checkin struct {
|
|||
Items []struct {
|
||||
Photo_id int
|
||||
Photo struct {
|
||||
Photo_img_sm string
|
||||
Photo_img_md string
|
||||
Photo_img_lg string
|
||||
Photo_img_og string
|
||||
}
|
||||
}
|
||||
|
@ -419,7 +422,7 @@ func (p *BeersPlugin) checkUntappd(channel string) {
|
|||
|
||||
msg2 := ""
|
||||
if checkin.Media.Count > 0 {
|
||||
msg2 = "Here's a photo: " + checkin.Media.Items[0].Photo.Photo_img_og
|
||||
msg2 = "Here's a photo: " + checkin.Media.Items[0].Photo.Photo_img_lg
|
||||
}
|
||||
|
||||
user.lastCheckin = checkin.Checkin_id
|
||||
|
|
Loading…
Reference in New Issue