We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e0155 commit 7853de7Copy full SHA for 7853de7
3 files changed
docs/release-notes.md
@@ -4,6 +4,7 @@
4
## Upcoming release
5
* For players:
6
* Added a friendly error message when the game fails to launch with a `NoSuitableGraphicsDeviceException`.
7
+ * Fixed crash when SMAPI tries to update the mod blacklist if ReShade is installed.
8
9
## 4.3.1
10
Released 13 July 2025 for Stardew Valley 1.6.14 or later. See [release highlights](https://www.patreon.com/posts/133992196).
src/SMAPI.Web/Startup.cs
@@ -49,7 +49,7 @@ internal class Startup
49
private const string BlacklistFileName = "SMAPI.blacklist.json";
50
51
/// <summary>The MD5 hash for the 'malicious mods' blacklist file.</summary>
52
- private Lazy<string?> BlacklistMd5Hash;
+ private readonly Lazy<string> BlacklistMd5Hash;
53
54
55
/*********
0 commit comments