diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-28 14:03:53 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-28 14:03:53 -0400 |
commit | f895fedc6aa12742842c97e536b5bf2e5ca3553c (patch) | |
tree | debf2ff5d128536f6cb30d3cf4048fbe97905df8 /src/SMAPI.Web/Framework | |
parent | fe5b2f62da27ac0e2ddf60240f2b19cf2a404f69 (diff) | |
download | SMAPI-f895fedc6aa12742842c97e536b5bf2e5ca3553c.tar.gz SMAPI-f895fedc6aa12742842c97e536b5bf2e5ca3553c.tar.bz2 SMAPI-f895fedc6aa12742842c97e536b5bf2e5ca3553c.zip |
move credentials into git-ignored file (#358)
Diffstat (limited to 'src/SMAPI.Web/Framework')
-rw-r--r-- | src/SMAPI.Web/Framework/LogParser/PastebinClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/LogParser/PastebinClient.cs b/src/SMAPI.Web/Framework/LogParser/PastebinClient.cs index 8536f249..e45a9eed 100644 --- a/src/SMAPI.Web/Framework/LogParser/PastebinClient.cs +++ b/src/SMAPI.Web/Framework/LogParser/PastebinClient.cs @@ -75,7 +75,7 @@ namespace StardewModdingAPI.Web.Framework.LogParser .PostAsync("api/api_post.php") .WithBodyContent(new FormUrlEncodedContent(new Dictionary<string, string> { - ["api_dev_key"] = "b8219d942109d1e60ebb14fbb45f06f9", + ["api_dev_key"] = this.DevKey, ["api_option"] = "paste", ["api_paste_private"] = "1", ["api_paste_code"] = content, |