@@ -71,8 +71,6 @@ pub struct FullChat {
71
71
fresh_message_counter : usize ,
72
72
// is_group - please check over chat.type in frontend instead
73
73
is_contact_request : bool ,
74
- /// Deprecated 2025-07. Chats protection cannot break any longer.
75
- is_protection_broken : bool ,
76
74
77
75
is_device_chat : bool ,
78
76
self_in_group : bool ,
@@ -147,7 +145,6 @@ impl FullChat {
147
145
color,
148
146
fresh_message_counter,
149
147
is_contact_request : chat. is_contact_request ( ) ,
150
- is_protection_broken : chat. is_protection_broken ( ) ,
151
148
is_device_chat : chat. is_device_talk ( ) ,
152
149
self_in_group : contact_ids. contains ( & ContactId :: SELF ) ,
153
150
is_muted : chat. is_muted ( ) ,
@@ -218,8 +215,6 @@ pub struct BasicChat {
218
215
is_self_talk : bool ,
219
216
color : String ,
220
217
is_contact_request : bool ,
221
- /// Deprecated 2025-07. Chats protection cannot break any longer.
222
- is_protection_broken : bool ,
223
218
224
219
is_device_chat : bool ,
225
220
is_muted : bool ,
@@ -249,7 +244,6 @@ impl BasicChat {
249
244
is_self_talk : chat. is_self_talk ( ) ,
250
245
color,
251
246
is_contact_request : chat. is_contact_request ( ) ,
252
- is_protection_broken : chat. is_protection_broken ( ) ,
253
247
is_device_chat : chat. is_device_talk ( ) ,
254
248
is_muted : chat. is_muted ( ) ,
255
249
} )
0 commit comments