Specify fallback fonts

This commit is contained in:
spikecodes 2021-05-26 20:30:08 -07:00
parent 4defb58f2a
commit d27bd782ce
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
4 changed files with 14 additions and 14 deletions

View file

@ -90,6 +90,13 @@ async fn main() {
let matches = cli::new("Libreddit")
.version(env!("CARGO_PKG_VERSION"))
.about("Private front-end for Reddit written in Rust ")
.arg(
Arg::with_name("redirect-https")
.short("r")
.long("redirect-https")
.help("Redirect all HTTP requests to HTTPS (no longer functional)")
.takes_value(false),
)
.arg(
Arg::with_name("address")
.short("a")
@ -108,13 +115,6 @@ async fn main() {
.default_value("8080")
.takes_value(true),
)
.arg(
Arg::with_name("redirect-https")
.short("r")
.long("redirect-https")
.help("Redirect all HTTP requests to HTTPS (no longer functional)")
.takes_value(false),
)
.arg(
Arg::with_name("hsts")
.short("H")