Update CHANGELOG.txt for v0.6.15
This commit is contained in:
parent
c16ed03f22
commit
f3f0b4868d
@ -334,3 +334,10 @@ v0.6.14
|
|||||||
- Add sending replies and emoji reaccs for DMs
|
- Add sending replies and emoji reaccs for DMs
|
||||||
- Bookmarks are now scrapable from the web UI
|
- Bookmarks are now scrapable from the web UI
|
||||||
- BUGFIX: don't crash when an image or video download 404s
|
- 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
|
||||||
|
@ -6,7 +6,6 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func (p Profile) SaveFollow(follower_id UserID, followee_id UserID) {
|
func (p Profile) SaveFollow(follower_id UserID, followee_id UserID) {
|
||||||
fmt.Printf("Saving %d => %d\n", follower_id, followee_id)
|
|
||||||
_, err := p.DB.Exec(`
|
_, err := p.DB.Exec(`
|
||||||
insert into follows (follower_id, followee_id)
|
insert into follows (follower_id, followee_id)
|
||||||
values (?, ?)
|
values (?, ?)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user