diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-03 21:21:28 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-03 21:21:28 -0500 |
commit | 2b1f607d41b3d4d071c0db0671dbc99b6982909f (patch) | |
tree | a854b7465c73a38c12b3b841515e39d9154217a7 /src/SMAPI.Web/Framework/ConfigModels | |
parent | 0aad3f545af854619c641dc8b57ac0cf12971c8e (diff) | |
download | SMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.tar.gz SMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.tar.bz2 SMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.zip |
encapsulate file storage, also handle Pastebin rate limits in JSON validator
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs index 7119ef03..1e020840 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs @@ -26,7 +26,7 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels public string AmazonRegion { get; set; } /// <summary>The AWS bucket in which to store temporary uploaded logs.</summary> - public string AmazonLogBucket { get; set; } + public string AmazonTempBucket { get; set; } /**** |