fix query

This commit is contained in:
Jay 2019-05-22 23:25:25 +08:00
parent 25892f83ae
commit a7cb7cf8cf
2 changed files with 5 additions and 4 deletions

View File

@ -61,14 +61,14 @@ func (p *Instagram) UpdatePost(postID string) (err error) {
// GetGroups -
func (p *Instagram) GetGroups() (err error) {
query := `select g.*, rt.tmpl as tmpl from "public"."facebook_page" p
left join "public"."line_fb_rt" rt
on rt."facebook" = p.id
query := `select g.*, rt.tmpl as tmpl from "public"."instagram" p
left join "public"."line_ig_rt" rt
on rt."ig" = p.id
left join "public"."line_group" g
on g.id = rt."line"
where
p.id = $1
and rt.facebook is not null`
and rt.ig is not null`
err = x.Select(&p.Groups, query, p.ID)
return
}

View File

@ -163,6 +163,7 @@ func UpdateInstagramPost(c *context.Context) {
err = ig.GetGroups()
if err != nil {
fmt.Println("get group err :: ", err)
continue
}