fix for issue #15209

Some slides of presentation not selectable if image is embedded
This commit is contained in:
mvasylenko 2022-06-20 15:50:49 +02:00 committed by Ramon Souza
parent b61bea879f
commit a2164e45d9

View File

@ -10,7 +10,7 @@ const getSlideText = async (url) => {
let content = ''; let content = '';
try { try {
const request = await axios(url); const request = await axios(url);
content = request.data; content = request.data.toString();
} catch (error) { } catch (error) {
Logger.error(`No file found. ${error}`); Logger.error(`No file found. ${error}`);
} }