Oops - forgot to include this last change to the parsing routine to the iohyve fetch parsing.

This commit is contained in:
Ken Moore
2016-03-04 11:11:28 -05:00
parent 857919958a
commit 4ba9edabbe

View File

@@ -46,6 +46,7 @@ QJsonObject Dispatcher::CreateDispatcherEventNotification(QString ID, QJsonObjec
}
void Dispatcher::parseIohyveFetchOutput(QString outputLog, QJsonObject *out){
//Note: this is the standard parsing for a "fetch" call
QStringList lines = outputLog.split("\n", QString::SkipEmptyParts);
if(lines.isEmpty()){ return; } //nothing to report
for(int i=lines.length()-1; i>=0; i--){