diff --git a/main.go b/main.go index ce45dbd..5fdaf5d 100644 --- a/main.go +++ b/main.go @@ -49,11 +49,11 @@ func architectureBot() { ps, err := cli.PhotoService.Search(context.Background(), &pexels.PhotoParams{ Query: query, PerPage: 80, + Page: rand.Intn(100), }) if err != nil { log.Fatal(err) } - ps.Page = rand.Intn(100) photoIndex := rand.Intn(79) photo := ps.Photos[photoIndex] @@ -76,7 +76,7 @@ func architectureBot() { // fmt.Println("Original SRC URL: ", photoURL) - post := "Taken from " + photo.URL + "\n" + hashtagString + post := hashtagString + "\n" + photo.URL domain := "https://" + viper.GetString("domain") if !viper.IsSet("NCD.ClientID") {