This commit is contained in:
Viktor Szépe 2024-02-19 08:20:24 +01:00 committed by GitHub
parent db9acaf4ff
commit 6f407ab509
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -147,7 +147,7 @@ final class SignalWebSocketHealthMonitor implements HealthMonitor {
}
}
} catch (Throwable e) {
logger.warn("Error occured in KeepAliveSender, ignoring ...", e);
logger.warn("Error occurred in KeepAliveSender, ignoring ...", e);
}
}
}

View file

@ -733,7 +733,7 @@ public class GroupStore {
final var expirationTime = resultSet.getInt("expiration_time");
final var blocked = resultSet.getBoolean("blocked");
final var archived = resultSet.getBoolean("archived");
final var storagRecord = resultSet.getBytes("storage_record");
final var storageRecord = resultSet.getBytes("storage_record");
return new GroupInfoV1(GroupId.v1(groupId),
groupIdV2 == null ? null : GroupId.v2(groupIdV2),
name,
@ -742,7 +742,7 @@ public class GroupStore {
expirationTime,
blocked,
archived,
storagRecord);
storageRecord);
}
private GroupInfoV2 getGroupV2ByV1Id(final Connection connection, final GroupIdV1 groupId) throws SQLException {