Browse Source

fixed some little things

pull/60/head
Joe Koop 3 years ago
parent
commit
09acae0e66
No known key found for this signature in database
GPG Key ID: B2D0C6242D5AC1FF
  1. 5
      assets/index.css
  2. 1
      src/args.rs

5
assets/index.css

@ -126,11 +126,6 @@ body { @@ -126,11 +126,6 @@ body {
white-space: nowrap;
}
.uploaders-table .cell-name,
.paths-table .cell-name {
width: 500px;
}
.uploaders-table .cell-status {
width: 80px;
padding-left: 0.6em;

1
src/args.rs

@ -174,7 +174,6 @@ impl Args { @@ -174,7 +174,6 @@ impl Args {
.unwrap_or_default();
let auth_method = match matches.value_of("auth-method").unwrap() {
"basic" => AuthMethod::Basic,
"digest" => AuthMethod::Digest,
_ => AuthMethod::Digest,
};
let auth = AccessControl::new(&auth, &uri_prefix)?;

Loading…
Cancel
Save