mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-14 04:52:00 +00:00
Update actor_language.rs
This commit is contained in:
parent
1a3da1a931
commit
8363e70cac
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ impl LocalUserLanguage {
|
|||
|
||||
let forms = lang_ids
|
||||
.iter()
|
||||
.map(|l| LocalUserLanguageForm {
|
||||
.map(|&l| LocalUserLanguageForm {
|
||||
local_user_id: for_local_user_id,
|
||||
language_id: l,
|
||||
})
|
||||
|
@ -171,7 +171,7 @@ impl SiteLanguage {
|
|||
|
||||
let forms = lang_ids
|
||||
.iter()
|
||||
.map(|l| SiteLanguageForm {
|
||||
.map(|&l| SiteLanguageForm {
|
||||
site_id: for_site_id,
|
||||
language_id: l,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue