diff --git a/src/core/parsingfactory.cpp b/src/core/parsingfactory.cpp index cd506ab14..e9b0ca3ae 100755 --- a/src/core/parsingfactory.cpp +++ b/src/core/parsingfactory.cpp @@ -100,6 +100,8 @@ QList ParsingFactory::parseAsATOM10(const QString &data) { } // TODO: There is a difference between "" and QString() in terms of NULL SQL values! + // This is because of difference in QString::isNull() and QString::isEmpty(), the "" is not null + // while QString() is. if (new_message.m_author.isNull()) { new_message.m_author = ""; }