@iobroker/adapter-react-v5 7.4.19 → 7.4.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1525,6 +1525,7 @@ export class Utils {
1525
1525
  const blob = await response.blob();
1526
1526
  return new Promise(resolve => {
1527
1527
  const reader = new FileReader();
1528
+ // eslint-disable-next-line @typescript-eslint/no-base-to-string
1528
1529
  reader.onload = () => resolve(reader.result?.toString() || '');
1529
1530
  reader.readAsDataURL(blob);
1530
1531
  });