diff --git a/common/src/main/assets/lang/en_US.json b/common/src/main/assets/lang/en_US.json index 4ff69622..c574543c 100644 --- a/common/src/main/assets/lang/en_US.json +++ b/common/src/main/assets/lang/en_US.json @@ -1291,6 +1291,7 @@ "EXTERNAL_MEDIA": "External Media", "NOTE": "Audio Note", "STICKER": "Sticker", + "SHARE": "Share", "STATUS": "Status", "LOCATION": "Location", "STATUS_SAVE_TO_CAMERA_ROLL": "Saved to Camera Roll", diff --git a/common/src/main/kotlin/me/rhunk/snapenhance/common/config/impl/MessagingTweaks.kt b/common/src/main/kotlin/me/rhunk/snapenhance/common/config/impl/MessagingTweaks.kt index d5f2907c..1c461fc8 100644 --- a/common/src/main/kotlin/me/rhunk/snapenhance/common/config/impl/MessagingTweaks.kt +++ b/common/src/main/kotlin/me/rhunk/snapenhance/common/config/impl/MessagingTweaks.kt @@ -51,7 +51,7 @@ class MessagingTweaks : ConfigContainer() { class BetterNotifications: ConfigContainer() { val groupNotifications = boolean("group_notifications") val chatPreview = boolean("chat_preview") - val mediaPreview = multiple("media_preview", "SNAP", "NOTE", "EXTERNAL_MEDIA", "STICKER") { + val mediaPreview = multiple("media_preview", "SNAP", "EXTERNAL_MEDIA", "STICKER", "SHARE", "TINY_SNAP", "MAP_REACTION") { customOptionTranslationPath = "content_type" } val mediaCaption = boolean("media_caption")