#5657 Fixed passing in the raw serial key

This commit is contained in:
Jerry (Xinyu Hou) 2016-10-14 12:43:33 +01:00
parent 33ebe61ef2
commit dce4b382e6
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ SerialKey::SerialKey(std::string serial) :
{ {
string plainText = decode(serial); string plainText = decode(serial);
if (!plainText.empty()) { if (!plainText.empty()) {
parse(serial); parse(plainText);
} }
} }