quasar-ui-danx 0.4.72 → 0.4.74

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": "quasar-ui-danx",
3
- "version": "0.4.72",
3
+ "version": "0.4.74",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -245,7 +245,7 @@ const transcodingStatus = computed(() => {
245
245
 
246
246
  for (let transcodeName of Object.keys(metaTranscodes)) {
247
247
  const transcode = metaTranscodes[transcodeName];
248
- if (!transcode?.completed_at) {
248
+ if (!["Complete", "Timeout"].includes(transcode?.status)) {
249
249
  return { ...transcode, message: `${transcodeName} ${transcode.status}` };
250
250
  }
251
251
  }