A feed generator that allows Bluesky bookmarks via DMs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

oh maybe this

+1 -1
+1 -1
database.go
··· 182 182 } 183 183 184 184 func getSubscribingPostParentURI(db *sql.DB, userDID, rkey string) (string, error) { 185 - sql := "SELECT parentURI FROM subscriptions WHERE (subscriptionRkey = ? AND userDID = ?);" 185 + sql := "SELECT parentURI FROM subscriptions WHERE subscriptionRkey = ? AND userDID = ?;" 186 186 rows, err := db.Query(sql, rkey, userDID) 187 187 if err != nil { 188 188 return "", fmt.Errorf("run query to get subscribing post parent URI: %w", err)