diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-12 20:41:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 20:41:57 -0500 |
commit | abe1fa14422acdabda8d7bd6b678d99ae7b1643c (patch) | |
tree | ca94c8eb9ee10f4e55614bf14d488f4744f64157 | |
parent | d68e4f97665898027f45782b8e66333912ae08ea (diff) | |
parent | 734c727bc3629986feb5cb331a6e4e8a6b20391b (diff) | |
download | SMAPI-abe1fa14422acdabda8d7bd6b678d99ae7b1643c.tar.gz SMAPI-abe1fa14422acdabda8d7bd6b678d99ae7b1643c.tar.bz2 SMAPI-abe1fa14422acdabda8d7bd6b678d99ae7b1643c.zip |
Merge pull request #691 from danvolchek/develop
[SMAPI] Fix update marker file not being created
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index c4841ece..b80f8ddf 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -590,6 +590,8 @@ namespace StardewModdingAPI.Framework else this.Monitor.Log(" SMAPI okay.", LogLevel.Trace); + updateFound = response.SuggestedUpdate?.Version; + // show errors if (response.Errors.Any()) { |