- @Override
- public void storeSelfProfileKey(final RecipientId recipientId, final ProfileKey profileKey) {
- try (final var connection = database.getConnection()) {
- storeProfileKey(connection, recipientId, profileKey, false);
- } catch (SQLException e) {
- throw new RuntimeException("Failed update recipient store", e);
- }
- }
-