updated status hashtag to be what was searched for

This commit is contained in:
Andrew W 2022-09-23 23:08:12 -05:00
parent 192c0ad007
commit 33b45e57cb
2 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
build
images
*.yaml
deploy

View File

@ -57,6 +57,12 @@ func architectureBot() {
photoIndex := rand.Intn(79)
photo := ps.Photos[photoIndex]
hashtagString := "#"
hashtagArr := strings.Split(query, " ")
for _, v := range hashtagArr {
hashtagString += v
}
fmt.Println(hashtagString)
// fmt.Println("Source Medium URL:", ps.Photos[0].Src.Medium)
photoURL := photo.Src.Original
mime := strings.Split(photoURL, "/")
@ -70,7 +76,7 @@ func architectureBot() {
// fmt.Println("Original SRC URL: ", photoURL)
post := "Taken from " + photo.URL + "\n#neoclassical"
post := "Taken from " + photo.URL + "\n" + hashtagString
domain := "https://" + viper.GetString("domain")
if !viper.IsSet("NCD.ClientID") {