mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #1297 from Unnoen/fix-download-path
Fix error on download path being empty
This commit is contained in:
commit
6c51637816
@ -93,7 +93,7 @@ namespace Wabbajack
|
|||||||
.Skip(1) // Don't do it initially
|
.Skip(1) // Don't do it initially
|
||||||
.Subscribe(downloadPath =>
|
.Subscribe(downloadPath =>
|
||||||
{
|
{
|
||||||
if (downloadPath == Location.TargetPath)
|
if (downloadPath != default && downloadPath == Location.TargetPath)
|
||||||
{
|
{
|
||||||
DownloadLocation.TargetPath = Location.TargetPath.Combine("downloads");
|
DownloadLocation.TargetPath = Location.TargetPath.Combine("downloads");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user