HomePageConfig hpcfg = hpcm.loadConfigFor(identity.getName());
String oldBio = hpcfg.getTextAboutMe();
if (StringHelper.containsNonWhitespace(oldBio)){
String newBio = migrateStringSavely(oldBio);
hpcfg.setTextAboutMe(newBio);
hpcm.saveConfigTo(identity.getName(), hpcfg);
counter++;
}
DBFactory.getInstance().intermediateCommit();
} catch (Exception e) {
log.error("Error during Migration: "+e, e);