diff --git a/Source/Module/modules/sequence/commands/SequenceCommand.cpp b/Source/Module/modules/sequence/commands/SequenceCommand.cpp index 5442314a..006084d7 100644 --- a/Source/Module/modules/sequence/commands/SequenceCommand.cpp +++ b/Source/Module/modules/sequence/commands/SequenceCommand.cpp @@ -105,7 +105,7 @@ void SequenceCommand::triggerInternal(int multiplexIndex) if (actionType != STOP_ALL_SEQUENCES && actionType != PLAY_MULTI_SEQUENCES && actionType != PLAY_SEQUENCE_AT && actionType != SET_EDITING_SEQUENCE_AT) { - if (getLinkedTargetContainerAs(target, multiplexIndex) == nullptr) return; + if (target == nullptr || getLinkedTargetContainerAs(target, multiplexIndex) == nullptr) return; //if (target->targetContainer.wasObjectDeleted()) return; }