Исправление бесконечного reconnect при переходе в несуществующую группу
This commit is contained in:
@@ -29,11 +29,11 @@ public class Group extends CreateUpdateEntity {
|
||||
private String groupId;
|
||||
|
||||
@Convert(converter = StringListConverter.class)
|
||||
@Column(name = "membersPublicKeys", nullable = false)
|
||||
@Column(name = "membersPublicKeys", nullable = false, columnDefinition = "TEXT")
|
||||
private List<String> membersPublicKeys = new ArrayList<>();
|
||||
|
||||
@Convert(converter = StringListConverter.class)
|
||||
@Column(name = "bannedPublicKeys", nullable = false)
|
||||
@Column(name = "bannedPublicKeys", nullable = false, columnDefinition = "TEXT")
|
||||
private List<String> bannedPublicKeys = new ArrayList<>();
|
||||
|
||||
public Long getId() {
|
||||
|
||||
Reference in New Issue
Block a user