diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-28 14:05:29 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-28 14:05:29 -0400 |
commit | 790a62920b15f1f948724f5b2a70a937829355dd (patch) | |
tree | 03b14ba6c13f93ba60f57f5cbb3b5797318d3007 /src/SMAPI.Web/Controllers | |
parent | f895fedc6aa12742842c97e536b5bf2e5ca3553c (diff) | |
download | SMAPI-790a62920b15f1f948724f5b2a70a937829355dd.tar.gz SMAPI-790a62920b15f1f948724f5b2a70a937829355dd.tar.bz2 SMAPI-790a62920b15f1f948724f5b2a70a937829355dd.zip |
link pastes to Pastebin account & tweak paste options (#358)
Diffstat (limited to 'src/SMAPI.Web/Controllers')
-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 f9943707..8e986196 100644 --- a/src/SMAPI.Web/Controllers/LogParserController.cs +++ b/src/SMAPI.Web/Controllers/LogParserController.cs @@ -35,7 +35,7 @@ namespace StardewModdingAPI.Web.Controllers this.Config = configProvider.Value; string version = this.GetType().Assembly.GetName().Version.ToString(3); string userAgent = string.Format(this.Config.PastebinUserAgent, version); - this.PastebinClient = new PastebinClient(this.Config.PastebinBaseUrl, userAgent, this.Config.PastebinDevKey); + this.PastebinClient = new PastebinClient(this.Config.PastebinBaseUrl, userAgent, this.Config.PastebinUserKey, this.Config.PastebinDevKey); } /*** |