Fixed the stopgap solution of translating in permanent private browsing mode (#386)

This commit is contained in:
Abhishek Aggarwal 2022-06-07 20:42:35 +02:00 коммит произвёл GitHub
Родитель 6e4d18e4b7
Коммит 78738fb929
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -584,7 +584,7 @@ const getItemFromCacheOrWeb = async (tabId, itemURL, fileSize, fileChecksum) =>
// cache api is not supported
console.log(`cache API not supported (${error})`);
// eslint-disable-next-line no-use-before-define
const responseFromWeb = await getItemFromWeb(itemURL, fileSize, fileChecksum);
const responseFromWeb = await getItemFromWeb(tabId, itemURL, fileSize, fileChecksum);
if (!responseFromWeb) {
return null;
}