this repo has no description
0
fork

Configure Feed

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

urgh was it this typo

+1 -1
+1 -1
database.go
··· 139 139 func deleteFeedItemsForParentURIandUserDID(db *sql.DB, parentURI, userDID string) error { 140 140 slog.Info("delete feed", "parent uri", parentURI, "userdid", userDID) 141 141 142 - sql := "DELETE FROM feed WHERE uri = ? AND userDID = ?;" 142 + sql := "DELETE FROM feed WHERE parentURI = ? AND userDID = ?;" 143 143 statement, err := db.Prepare(sql) 144 144 if err != nil { 145 145 return fmt.Errorf("prepare delete feed items: %w", err)