diff --git a/cmd/twitter/main.go b/cmd/twitter/main.go index e0ad5e5..9f71279 100644 --- a/cmd/twitter/main.go +++ b/cmd/twitter/main.go @@ -32,7 +32,7 @@ func main() { flag.BoolVar(show_version_flag, "v", false, "") session_name := flag.String("session", "", "Name of session file to use") - addr := flag.String("addr", ":1488", "port to listen on") // Random port that's probably not in use + addr := flag.String("addr", "localhost:1488", "port to listen on") // Random port that's probably not in use how_many := flag.Int("n", 50, "") flag.IntVar(how_many, "number", 50, "") diff --git a/doc/TODO.txt b/doc/TODO.txt index 1e4e125..7eff01b 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -27,11 +27,6 @@ TODO: APIv2-pinned-tweets TODO video-not-downloading: https://twitter.com/JustinPulitzer/status/1496709662602932224 -TODO use-sqlx -- Users -- Images, Videos, Urls, Polls -- Retweets - TODO get-user-tweets-user-doesn't-exist TODO bash-completions diff --git a/internal/webserver/static/styles.css b/internal/webserver/static/styles.css index b481be9..f01bd87 100644 --- a/internal/webserver/static/styles.css +++ b/internal/webserver/static/styles.css @@ -194,8 +194,8 @@ h3 { width: 3em; margin-right: 0.5em; } -.thread-parent-tweet .vertical-reply-line, -.reply-chain > :not(:last-child) .vertical-reply-line { +.thread-parent-tweet .vertical-reply-line:not(.quoted-tweet .vertical-reply-line), +.reply-chain > :not(:last-child) .vertical-reply-line:not(.quoted-tweet .vertical-reply-line) { width: 2px; background-color: var(--color-twitter-off-white-dark); flex-grow: 1;