Fixed a typo

pull/10/head
Jens Pelzetter 2021-12-24 12:56:29 +01:00
parent b22ba52f98
commit dfcfd4edfb
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( public void setInterests(
@ -108,7 +108,7 @@ class ProfileSiteItemController {
) )
) )
); );
profileSiteItem.getInterests().addValue(locale, interests); profileSiteItem.getInterests().putValue(locale, interests);
} }
public void setMisc( public void setMisc(
@ -124,7 +124,7 @@ class ProfileSiteItemController {
) )
) )
); );
profileSiteItem.getMisc().addValue(locale, misc); profileSiteItem.getMisc().putValue(locale, misc);
} }
} }