@@ -71,8 +71,6 @@ pub struct FullChat {
7171 fresh_message_counter : usize ,
7272 // is_group - please check over chat.type in frontend instead
7373 is_contact_request : bool ,
74- /// Deprecated 2025-07. Chats protection cannot break any longer.
75- is_protection_broken : bool ,
7674
7775 is_device_chat : bool ,
7876 self_in_group : bool ,
@@ -147,7 +145,6 @@ impl FullChat {
147145 color,
148146 fresh_message_counter,
149147 is_contact_request : chat. is_contact_request ( ) ,
150- is_protection_broken : chat. is_protection_broken ( ) ,
151148 is_device_chat : chat. is_device_talk ( ) ,
152149 self_in_group : contact_ids. contains ( & ContactId :: SELF ) ,
153150 is_muted : chat. is_muted ( ) ,
@@ -218,8 +215,6 @@ pub struct BasicChat {
218215 is_self_talk : bool ,
219216 color : String ,
220217 is_contact_request : bool ,
221- /// Deprecated 2025-07. Chats protection cannot break any longer.
222- is_protection_broken : bool ,
223218
224219 is_device_chat : bool ,
225220 is_muted : bool ,
@@ -249,7 +244,6 @@ impl BasicChat {
249244 is_self_talk : chat. is_self_talk ( ) ,
250245 color,
251246 is_contact_request : chat. is_contact_request ( ) ,
252- is_protection_broken : chat. is_protection_broken ( ) ,
253247 is_device_chat : chat. is_device_talk ( ) ,
254248 is_muted : chat. is_muted ( ) ,
255249 } )
0 commit comments