I started calibre in debug mode, and in the log file I see the following error:
Code:
...
ERROR: webpack://lib1/./gui/SceneBar.js?:199: Fetch API cannot load clbr://internal.sandbox/view_sites. URL scheme "clbr" is not supported.
ERROR: webpack://lib1/./gui/SceneBar.js?:199: Uncaught (in promise) TypeError: Failed to fetch
INFO: webpack://lib1/./loaders/FileZip_withJson.js?:56: BEG setZipLoaderInstance
SceneBar.js is one of my files, and it calls
Code:
window.location.origin + '/view_sites';
which probably translates to
Code:
clbr://internal.sandbox/view_sites
on mobile I open 192.168.1.75:8080 via Firefox
From your experience, do you know if there is anything that can be done on the browser side in mobile to
- allow using window.location.origin?, or
- workaround window.location.origin to load another page, by other means?
Thanks