Skip to content

Commit 3adf1c1

Browse files
author
Todd Lair
authored
Merge pull request #117 from marcdemz/feature/WIN-183
Feature/win 183
2 parents 19d04a1 + e966b1b commit 3adf1c1

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
@@ -296,14 +296,13 @@ public static void ReadStackifyJSONConfig()
296296
if (File.Exists(jsonPath))
297297
{
298298
using (var fs = new FileStream(jsonPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
299-
300-
if (string.IsNullOrEmpty(v))
301299
{
302300
using (var sr = new StreamReader(fs))
303301
{
304302
json = sr.ReadToEnd();
305303
}
306304
}
305+
307306
var obj = JObject.Parse(json, Settings);
308307
Config.SetStackifyObj(obj);
309308
}

0 commit comments

Comments
 (0)