mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Fix typos (#1459)
This commit is contained in:
parent
db9acaf4ff
commit
6f407ab509
5 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue