From 3751d3c84c9fbe9e31b0346d179057488c3715ed Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Fri, 17 Mar 2023 06:35:32 -0700 Subject: [PATCH] More elaborate error message when plugin download fails Summary: See https://fb.workplace.com/groups/flippersupport/permalink/1586389021841750/. Flipper suggests that not connecting to VPN is the problem, while the problem can also not being logged in. Reviewed By: antonk52 Differential Revision: D44164192 fbshipit-source-id: 993d2a4bdc6a9cb0c45f35856b83449cea294d45 --- desktop/flipper-ui-core/src/dispatcher/pluginDownloads.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/flipper-ui-core/src/dispatcher/pluginDownloads.tsx b/desktop/flipper-ui-core/src/dispatcher/pluginDownloads.tsx index af3397dc2..584a022cf 100644 --- a/desktop/flipper-ui-core/src/dispatcher/pluginDownloads.tsx +++ b/desktop/flipper-ui-core/src/dispatcher/pluginDownloads.tsx @@ -90,7 +90,7 @@ async function handlePluginDownload( if (startedByUser) { showErrorNotification( `Failed to download plugin "${title}" v${version}.`, - 'Please check that you are on VPN/Lighthouse.', + 'Please check that you are on VPN/Lighthouse and that you are logged into Flipper.', ); } throw error;