diff --git a/src/core/CoreProvider.tsx b/src/core/CoreProvider.tsx
index 5fea324cb..061ac4339 100644
--- a/src/core/CoreProvider.tsx
+++ b/src/core/CoreProvider.tsx
@@ -89,7 +89,7 @@ const Core = (props: Props) => {
return (
- { error && !ready && }
+ { error && !ready && }
{ ready && !error && props.children }
);
diff --git a/src/core/Error/Error.tsx b/src/core/Error/Error.tsx
index fecfafc45..dd46968ba 100644
--- a/src/core/Error/Error.tsx
+++ b/src/core/Error/Error.tsx
@@ -6,7 +6,11 @@ import Image from 'stremio/components/Image';
import Button from 'stremio/components/Button';
import styles from './styles.less';
-const Error = () => {
+type Props = {
+ message: string,
+};
+
+const Error = ({ message }: Props) => {
const { t } = useTranslation();
const clearData = React.useCallback(() => {
@@ -21,8 +25,13 @@ const Error = () => {
src={require('/assets/images/empty.png')}
alt={' '}
/>
-
- { t('GENERIC_ERROR_MESSAGE') }
+
+
+ {t('GENERIC_ERROR_MESSAGE')}
+
+
+ {message}
+