Skip to content

Commit

Permalink
Make passwords an Option<Vec<String>
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Mar 19, 2024
1 parent 8055fb5 commit 8b34d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maple/transitland_download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub struct DownloadedFeedsInformation {
#[derive(Debug, Clone)]
pub struct StaticPassword {
onestop_feed_id: String,
passwords: Vec<String>,
passwords: Option<Vec<String>>,
header_auth_key: Option<String>,
// this would be "Bearer" so the header would insert Authorization: Bearer {key}
header_auth_value_prefix: Option<String>,
Expand Down

0 comments on commit 8b34d48

Please sign in to comment.