From c5a2126abe4fd9ff9be4c7f907632fc51adcc8dd Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 15 Oct 2020 14:21:17 -0400 Subject: [PATCH] disable snapshot thumbnail on desktop to prevent desktop crashes https://github.com/electron/electron/issues/20750\#issuecomment-709505902 --- ui/component/selectThumbnail/view.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/component/selectThumbnail/view.jsx b/ui/component/selectThumbnail/view.jsx index 22ac78231..6ac117193 100644 --- a/ui/component/selectThumbnail/view.jsx +++ b/ui/component/selectThumbnail/view.jsx @@ -156,7 +156,9 @@ class SelectThumbnail extends React.PureComponent { label={__('Enter a thumbnail URL')} onClick={() => updatePublishForm({ uploadThumbnailStatus: THUMBNAIL_STATUSES.MANUAL })} /> - {isSupportedVideo && ( + {isSupportedVideo && IS_WEB && ( + // Disabled on desktop until this is resolved + // https://github.com/electron/electron/issues/20750#issuecomment-709505902