mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-05-21 12:58:46 -05:00
FF-1815: Added inverse ! to language helper matches
This commit is contained in:
@@ -149,8 +149,8 @@ public abstract class TrackSelectorFlowElement<T> : FfmpegBuilderNode where T :
|
||||
foreach (var kv in TrackSelectionOptions)
|
||||
{
|
||||
var key = kv.Key?.ToLowerInvariant() ?? string.Empty;
|
||||
var kvValue = Args.ReplaceVariables(kv.Value?.Replace("{orig}", "{OriginalLanguage}") ?? string.Empty,
|
||||
stripMissing: true);
|
||||
string kvValue = kv.Value?.Replace("{orig}", "{OriginalLanguage}") ?? string.Empty;
|
||||
kvValue = Args.ReplaceVariables(kvValue, stripMissing: true);
|
||||
switch (key)
|
||||
{
|
||||
case "language":
|
||||
|
||||
Reference in New Issue
Block a user