diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-21 23:52:47 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-21 23:52:47 -0500 |
commit | c1b15fb3725661ebfd8e03cec08343ae49e5d6da (patch) | |
tree | bac8ddb6b882466de3feabbd8248b6cc272328b8 /src/SMAPI.Web/Controllers/LogParserController.cs | |
parent | ba46491ebc305a66a0a3a1f3cefa8bb677e57ff7 (diff) | |
download | SMAPI-c1b15fb3725661ebfd8e03cec08343ae49e5d6da.tar.gz SMAPI-c1b15fb3725661ebfd8e03cec08343ae49e5d6da.tar.bz2 SMAPI-c1b15fb3725661ebfd8e03cec08343ae49e5d6da.zip |
allow local dev environments without an Azure account
Diffstat (limited to 'src/SMAPI.Web/Controllers/LogParserController.cs')
-rw-r--r-- | src/SMAPI.Web/Controllers/LogParserController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Controllers/LogParserController.cs b/src/SMAPI.Web/Controllers/LogParserController.cs index e270ae0a..97c419d9 100644 --- a/src/SMAPI.Web/Controllers/LogParserController.cs +++ b/src/SMAPI.Web/Controllers/LogParserController.cs @@ -72,7 +72,7 @@ namespace StardewModdingAPI.Web.Controllers return this.View("Index", this.GetModel(null, uploadError: "The log file seems to be empty.")); // upload log - UploadResult uploadResult = await this.Storage.SaveAsync(title: $"SMAPI log {DateTime.UtcNow:s}", content: input, compress: true); + UploadResult uploadResult = await this.Storage.SaveAsync(input); if (!uploadResult.Succeeded) return this.View("Index", this.GetModel(null, uploadError: uploadResult.UploadError)); |