rez_core 3.1.144 → 3.1.145

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.144",
3
+ "version": "3.1.145",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -1322,7 +1322,8 @@ export class IntegrationService {
1322
1322
  if (commTemplate.markup_id) {
1323
1323
  let url = await this.mediaService.getMediaDownloadUrl(commTemplate.markup_id, {}, 60000);
1324
1324
  if (url) {
1325
- richText = await axios.get(url.signedUrl, { responseType: 'text' });
1325
+ let response = await axios.get(url.signedUrl, { responseType: 'text' });
1326
+ richText = response.data
1326
1327
  }
1327
1328
  }
1328
1329
  }