Исправление бесконечного reconnect при переходе в несуществующую группу

This commit is contained in:
RoyceDa
2026-02-18 21:31:12 +02:00
parent 81d513961e
commit 128c65d041
2 changed files with 3 additions and 6 deletions

View File

@@ -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() {