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
··· 179 179 } 180 180 181 181 func deleteSubscriptionForUser(db *sql.DB, userDID, parentURI string) error { 182 - sql := "DELETE FROM subscription WHERE (parentURI = ? AND userDID = ?);" 182 + sql := "DELETE FROM subscriptions WHERE (parentURI = ? AND userDID = ?);" 183 183 _, err := db.Exec(sql, parentURI, userDID) 184 184 if err != nil { 185 185 return fmt.Errorf("exec delete subscription for user: %w", err)