Default subreddit post sorting. Closes #166

This commit is contained in:
spikecodes 2021-03-25 21:41:58 -07:00
parent 2533e8cef5
commit 6a7f725c12
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
6 changed files with 16 additions and 20 deletions

View file

@ -365,6 +365,7 @@ pub struct Preferences {
pub wide: String,
pub show_nsfw: String,
pub comment_sort: String,
pub post_sort: String,
pub subscriptions: Vec<String>,
}
@ -378,6 +379,7 @@ impl Preferences {
wide: cookie(&req, "wide"),
show_nsfw: cookie(&req, "show_nsfw"),
comment_sort: cookie(&req, "comment_sort"),
post_sort: cookie(&req, "post_sort"),
subscriptions: cookie(&req, "subscriptions").split('+').map(String::from).filter(|s| !s.is_empty()).collect(),
}
}