this repo has no description
0
fork

Configure Feed

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

typo

+1 -1
+1 -1
database.go
··· 161 161 } 162 162 163 163 func addSubscriptionForParent(db *sql.DB, parentURI, userDid string) error { 164 - sql := `INSERT INTO subscriptions (parentURI, userDID,) VALUES (?, ?);` 164 + sql := `INSERT INTO subscriptions (parentURI, userDID) VALUES (?, ?);` 165 165 _, err := db.Exec(sql, parentURI, userDid) 166 166 if err != nil { 167 167 return fmt.Errorf("exec insert subscrptions: %w", err)