Skip to content

Commit

Permalink
Fix clip metadata path (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN authored Dec 31, 2023
1 parent b950730 commit 8d7f23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/ClipDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private static async Task DownloadFileTaskAsync(string url, string destinationFi

private async Task EncodeClipWithMetadata(string inputFile, string destinationFile, Clip clipMetadata, VideoMomentEdge clipChapter, CancellationToken cancellationToken)
{
var metadataFile = $"{Path.GetFileName(inputFile)}_metadata.txt";
var metadataFile = $"{inputFile}_metadata.txt";

try
{
Expand Down

0 comments on commit 8d7f23c

Please sign in to comment.