Skip to content

Commit

Permalink
fix: an issue where hyperdeck clips couldn't be added to the timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Jun 17, 2023
1 parent 800bbeb commit a0a0a5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/app/src/lib/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,8 @@ export function allowAddingResourceToLayer(project: Project, resource: ResourceA
return (
resource.resourceType === ResourceType.HYPERDECK_PLAY ||
resource.resourceType === ResourceType.HYPERDECK_RECORD ||
resource.resourceType === ResourceType.HYPERDECK_PREVIEW
resource.resourceType === ResourceType.HYPERDECK_PREVIEW ||
resource.resourceType === ResourceType.HYPERDECK_CLIP
)
}
} else if (mapping.device === DeviceType.LAWO) {
Expand Down

0 comments on commit a0a0a5a

Please sign in to comment.