Merge pull request #755 from tr4wzified/url-copy-fix

Fix using spaces instead of %20 in the generated URL for file uploader
This commit is contained in:
Timothy Baldridge 2020-04-26 22:59:20 -06:00 committed by GitHub
commit fb3064665f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 893 additions and 702 deletions

File diff suppressed because one or more lines are too long

View File

@ -58,6 +58,7 @@ namespace Wabbajack
}
finally
{
FinalUrl = FinalUrl.Replace(" ", "%20");
_isUploading.OnNext(false);
}
}, IsUploading.StartWith(false).Select(u => !u)