Skip to content

Commit e966b1b

Browse files
author
marc
committed
fix build error for netstandard
1 parent 9ec81d8 commit e966b1b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Src/StackifyLib/Config.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,13 @@ public static void ReadStackifyJSONConfig()
292292
if (File.Exists(jsonPath))
293293
{
294294
using (var fs = new FileStream(jsonPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
295-
296-
if (string.IsNullOrEmpty(v))
297295
{
298296
using (var sr = new StreamReader(fs))
299297
{
300298
json = sr.ReadToEnd();
301299
}
302300
}
301+
303302
var obj = JObject.Parse(json, Settings);
304303
Config.SetStackifyObj(obj);
305304
}

0 commit comments

Comments
 (0)