diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4cb34e6..dd336fd 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/pkg/persistence/follow_queries.go b/pkg/persistence/follow_queries.go index 6aacdac..a7d0d7b 100644 --- a/pkg/persistence/follow_queries.go +++ b/pkg/persistence/follow_queries.go @@ -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 (?, ?)