Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
barncastle committed Jul 14, 2018
1 parent ef12d8c commit 0646a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WDBXEditor/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1546,7 +1546,7 @@ private static async Task LoadListFile()
catch { return; }
}

ClientDBFileNames = File.ReadAllLines("listfile.txt").AsParallel()
ClientDBFileNames = File.ReadAllLines(listfile).AsParallel()
.Where(x => x.EndsWith("dbc") || x.EndsWith("db2"))
.Select(x => x.ToUpper().Replace("/", "\\"))
.ToList();
Expand Down

0 comments on commit 0646a44

Please sign in to comment.