Skip to content
Snippets Groups Projects

fix: Add space after bio to allow proper formatting

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -152,7 +152,7 @@ public class SlackWebhookResource {
@@ -152,7 +152,7 @@ public class SlackWebhookResource {
sb.append(profile.getBio());
sb.append(profile.getBio());
}
}
if (!profile.getInterests().isEmpty()) {
if (!profile.getInterests().isEmpty()) {
sb.append("\n*Interests*");
sb.append("\n*Interests* ");
sb.append(String.join(", ", profile.getInterests()));
sb.append(String.join(", ", profile.getInterests()));
}
}
return sb.toString();
return sb.toString();
Loading