Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Fix the new meta file parsing: forgot that I changed the name of the …
Browse files Browse the repository at this point in the history
…QStringList that contains the information.
  • Loading branch information
Ken Moore committed Nov 14, 2013
1 parent 85ec342 commit d94e882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-qt4/pc-softwaremanager/pbiDBAccess.cpp
Expand Up @@ -213,8 +213,8 @@ QStringList PBIDBAccess::parseAppMetaLine(QString line){
//Format the output list
QStringList output;
qDebug() << "Parse App Meta Line:" << line;
qDebug() << " - Number of fields:" << output.length();
if(output.length() < 13){ return output;} //invalid line
qDebug() << " - Number of fields:" << list.length();
if(list.length() < 13){ return output;} //invalid line
output << list[0]; //NAME
output << list[1]; //CATEGORY
output << list[2]; //remoteIcon
Expand Down

0 comments on commit d94e882

Please sign in to comment.