Merge pull request #15268 from ramonlsouza/pr-15215-25

fix: some presentation slides are not loaded after conversion (2.5)
This commit is contained in:
Ramón Souza 2022-06-28 13:14:15 +01:00 committed by GitHub
commit 58c3f45518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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