Browse Source

Fix for typo in last commit.

tags/2021-05-28
jules 10 years ago
parent
commit
fcb87ee677
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp

+ 4
- 1
modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp View File

@@ -74,7 +74,10 @@ struct KeyFileUtils
ScopedPointer<XmlElement> xml;
if (key.isValid())
xml = XmlDocument::parse (val.toMemoryBlock().toString());
{
key.applyToValue (val);
xml = XmlDocument::parse (val.toMemoryBlock().toString());
}
return xml != nullptr ? *xml : XmlElement("key");
}


Loading…
Cancel
Save