mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-26 21:28:40 +00:00
ErrorBoundary improvements, StickerCreator logging/resiliency
This commit is contained in:
@@ -972,7 +972,10 @@ export class Message extends React.PureComponent<Props, State> {
|
||||
);
|
||||
}
|
||||
|
||||
if (isImage(attachments) || isVideo(attachments)) {
|
||||
if (
|
||||
isImage(attachments) ||
|
||||
(isVideo(attachments) && hasVideoScreenshot(attachments))
|
||||
) {
|
||||
const bottomOverlay = !isSticker && !collapseMetadata;
|
||||
// We only want users to tab into this if there's more than one
|
||||
const tabIndex = attachments.length > 1 ? 0 : -1;
|
||||
|
||||
Reference in New Issue
Block a user