Fixed some compile failures

pull/20/head
Jens Pelzetter 2022-01-10 18:59:50 +01:00
parent d7cc4e6f80
commit 0b886bf52c
1 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getPosition().addValue(locale, position);
profileSiteItem.getPosition().putValue(locale, position);
}
public void setInterests(
@ -108,7 +108,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getInterests().addValue(locale, interests);
profileSiteItem.getInterests().putValue(locale, interests);
}
public void setMisc(
@ -124,7 +124,7 @@ class ProfileSiteItemController {
)
)
);
profileSiteItem.getMisc().addValue(locale, misc);
profileSiteItem.getMisc().putValue(locale, misc);
}
}