diff --git a/migrationTool/transform/AnalyzeTransform.cs b/migrationTool/transform/AnalyzeTransform.cs index 21e193c..42e6180 100644 --- a/migrationTool/transform/AnalyzeTransform.cs +++ b/migrationTool/transform/AnalyzeTransform.cs @@ -19,8 +19,8 @@ public AnalysisResult(string assetName, MigrationStatus status, Uri? outputPath public string AssetName { get; set; } - public Uri? OutputHlsUrl => OutputPath != null ? new Uri(OutputPath!, (ManifestName + ".m3u8")) : null; + public Uri? OutputHlsUrl => OutputPath != null && ManifestName != null ? new Uri(OutputPath!, (ManifestName + ".m3u8")) : null; - public Uri? OutputDashUrl => OutputPath != null ? new Uri(OutputPath!, (ManifestName + ".mpd")) : null; + public Uri? OutputDashUrl => OutputPath != null && ManifestName != null ? new Uri(OutputPath!, (ManifestName + ".mpd")) : null; } }