We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a40ea6 commit 5212cd2Copy full SHA for 5212cd2
src/NetSparkle/Configurations/JSONConfiguration.cs
@@ -48,7 +48,7 @@ public JSONConfiguration(IAssemblyAccessor assemblyAccessor)
48
public JSONConfiguration(IAssemblyAccessor assemblyAccessor, string savePath)
49
: base(assemblyAccessor)
50
{
51
- _savePath = savePath != null && string.IsNullOrWhiteSpace(savePath) ? savePath : GetSavePath();
+ _savePath = savePath != null && !string.IsNullOrWhiteSpace(savePath) ? savePath : GetSavePath();
52
try
53
54
// get the save path
0 commit comments