Skip to content

Commit

Permalink
Merge pull request connamara#359 from neurensic/issue/358
Browse files Browse the repository at this point in the history
Transform the beginString into the the correct spec file name. Before…
  • Loading branch information
cbusbey committed Feb 18, 2016
2 parents 63f8f2a + 43b1e51 commit 201b509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickFIXn/SessionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected DataDictionary.DataDictionary createDataDictionary(SessionID sessionID
if (settings.Has(settingsKey))
path = settings.GetString(settingsKey);
else
path = beginString.Replace("\\.", "") + ".xml";
path = beginString.Replace(".", "") + ".xml";

if (!dictionariesByPath_.TryGetValue(path, out dd))
{
Expand Down

0 comments on commit 201b509

Please sign in to comment.