Skip to content

Commit

Permalink
[修正]文法ミスを修正 (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao-H authored Nov 21, 2023
1 parent 2135b15 commit 9b4ca6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public async Task<IAttemptResult<IDownloadContext>> TryDownloadContentAsync(IVid
}


string directoryName = Path.GetDirectoryName(this.GetVideoFilePath(setting, domainVideoInfo)) ?? /string.Empty;
string directoryName = Path.GetDirectoryName(this.GetVideoFilePath(setting, domainVideoInfo)) ?? string.Empty;
if (!this._directoryIO.Exists(directoryName))
{
IAttemptResult dResult = this._directoryIO.CreateDirectory(directoryName);
Expand Down

0 comments on commit 9b4ca6c

Please sign in to comment.