summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Controllers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-28 14:05:29 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-28 14:05:29 -0400
commit790a62920b15f1f948724f5b2a70a937829355dd (patch)
tree03b14ba6c13f93ba60f57f5cbb3b5797318d3007 /src/SMAPI.Web/Controllers
parentf895fedc6aa12742842c97e536b5bf2e5ca3553c (diff)
downloadSMAPI-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.cs2
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);
}
/***