From 39de1d7e847515445a5dbbd17fbd2a85bcccaf81 Mon Sep 17 00:00:00 2001 From: infinite-persistence <64950861+infinite-persistence@users.noreply.github.com> Date: Tue, 22 Feb 2022 11:17:41 -0800 Subject: [PATCH] Band-aid: warn about AdGuard blocking our CDN (#934) * Band-aid: warn about AdGuard blocking our CDN Getting 50-100 errors per day. This will be a band-aid until the AdGuard fixes it. * update message Co-authored-by: Thomas Zarebczan --- static/app-strings.json | 1 + ui/redux/actions/publish.js | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/static/app-strings.json b/static/app-strings.json index 70515c42f..88f6a38f7 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1294,6 +1294,7 @@ "Are you sure you want to purchase %claim_title%?": "Are you sure you want to purchase %claim_title%?", "Discover": "Discover", "Thumbnail upload service may be down, try again later.": "Thumbnail upload service may be down, try again later.", + "Thumbnail upload service may be down, try again later. Some plugins like AdGuard Français may be blocking the service. If using Brave, go to brave://adblock and disable it, or turn down shields.": "Thumbnail upload service may be down, try again later. Some plugins like AdGuard Français may be blocking the service. If using Brave, go to brave://adblock and disable it, or turn down shields.", "You are currently editing your upload.": "You are currently editing your upload.", "You are currently editing this claim.": "You are currently editing this claim.", "My content for this post...": "My content for this post...", diff --git a/ui/redux/actions/publish.js b/ui/redux/actions/publish.js index 02c2bb011..709d01e9d 100644 --- a/ui/redux/actions/publish.js +++ b/ui/redux/actions/publish.js @@ -473,7 +473,10 @@ export const doUploadThumbnail = ( // This sucks but ¯\_(ツ)_/¯ if (message === 'Failed to fetch') { - message = __('Thumbnail upload service may be down, try again later.'); + // message = __('Thumbnail upload service may be down, try again later.'); + message = __( + 'Thumbnail upload service may be down, try again later. Some plugins like AdGuard Français may be blocking the service. If using Brave, go to brave://adblock and disable it, or turn down shields.' + ); } const userInput = [fileName, fileExt, fileType, thumbnail, size];