From e641793195bd028dfa46528d2ce5193addfd4d2d Mon Sep 17 00:00:00 2001 From: Balder Date: Thu, 16 Feb 2023 16:19:11 +0100 Subject: [PATCH] EBML output fix --- src/output/output_ebml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output_ebml.h b/src/output/output_ebml.h index 63a2c5dc..292b5b33 100644 --- a/src/output/output_ebml.h +++ b/src/output/output_ebml.h @@ -14,7 +14,7 @@ namespace Mist{ protected: virtual bool inlineRestartCapable() const{return true;} bool isFileTarget(){ - if (config->getString("target").substr(0, 9) != "mkv-exec:"){return true;} + if (config->getString("target").size() && config->getString("target").substr(0, 9) != "mkv-exec:"){return true;} return false; }