Basic subscribe functionality.

This commit is contained in:
Matthew Crossman 2021-01-30 18:00:00 +11:00
parent 75bbcefbec
commit 345308a9ac
No known key found for this signature in database
GPG key ID: C6B942B019794CC2
5 changed files with 53 additions and 11 deletions

View file

@ -145,7 +145,7 @@ pub fn prefs(req: HttpRequest) -> Preferences {
wide: cookie(&req, "wide"),
hide_nsfw: cookie(&req, "hide_nsfw"),
comment_sort: cookie(&req, "comment_sort"),
subs: cookie(&req, "subreddits").split(",").map(|s| s.to_string()).collect(),
subs: cookie(&req, "subscriptions").split(",").map(|s| s.to_string()).filter(|s| s != "").collect(),
}
}