Update CHANGELOG.txt for v0.6.15

This commit is contained in:
Alessio 2024-08-23 12:52:16 -07:00
parent c16ed03f22
commit f3f0b4868d
2 changed files with 7 additions and 1 deletions

View File

@ -334,3 +334,10 @@ v0.6.14
- Add sending replies and emoji reaccs for DMs
- Bookmarks are now scrapable from the web UI
- BUGFIX: don't crash when an image or video download 404s
v0.6.15
-------
- BUGFIX: `webserver` subcommand now respects the `--session` flag
- More types of scraping errors now show toasts in the UI: rate limiting, expired session
- New `--delay` flag added to introduce a delay in paginated scrapes

View File

@ -6,7 +6,6 @@ import (
)
func (p Profile) SaveFollow(follower_id UserID, followee_id UserID) {
fmt.Printf("Saving %d => %d\n", follower_id, followee_id)
_, err := p.DB.Exec(`
insert into follows (follower_id, followee_id)
values (?, ?)