} else {
contactLabel.setText("<unknown>");
}
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d MMM uuuu HH:mm");
LocalDateTime time = LocalDateTime.ofEpochSecond(pledge.getTimestamp(), 0, ZoneOffset.UTC);
dateLabel.setText(time.format(formatter));
this.project = project;
this.pledge = pledge;
// Let the user save their pledge again if it's a serverless project and this pledge is ours.
LHProtos.Pledge pledgeFor = Main.wallet.getPledgeFor(project);