Merge branch 'master' of gitlab.com:peter-iakovlev/telegram-ios

This commit is contained in:
Ilya Laktyushin 2025-10-31 00:07:36 +04:00
commit e839427846
2 changed files with 8 additions and 1 deletions

View File

@ -1 +1 @@
46282cf8a2cdac769c981a16a85df656704cf25ffbbb514921eaa7a8d88f8d5d
c796824aa8245ce7309426caa3c4816024abd71d21f3805988aa953a4e826169

View File

@ -526,6 +526,12 @@ official_communication_notifications_fragment = """
"""
communication_notifications_fragment = official_communication_notifications_fragment if telegram_bundle_id in official_bundle_ids else ""
official_notification_filtering_fragment = """
<key>com.apple.developer.usernotifications.filtering</key>
<true/>
"""
notification_filtering_fragment = official_notification_filtering_fragment if telegram_bundle_id == "ph.telegra.Telegraph" else ""
store_signin_fragment = """
<key>com.apple.developer.applesignin</key>
<array>
@ -547,6 +553,7 @@ plist_fragment(
unrestricted_voip_fragment,
carplay_fragment,
communication_notifications_fragment,
notification_filtering_fragment,
signin_fragment,
])
)