forked from len0rd/rockbox
If downloading the build information didn't work don't try to populate the version information.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20817 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a357c202a2
commit
4e747f1c5c
1 changed files with 12 additions and 9 deletions
|
|
@ -223,8 +223,10 @@ void RbUtilQt::downloadDone(bool error)
|
|||
|
||||
void RbUtilQt::downloadBleedingDone(bool error)
|
||||
{
|
||||
if(error) qDebug() << "network error:" << bleeding->error();
|
||||
|
||||
if(error) {
|
||||
qDebug() << "network error:" << bleeding->error();
|
||||
}
|
||||
else {
|
||||
bleedingInfo.open();
|
||||
QSettings info(bleedingInfo.fileName(), QSettings::IniFormat, this);
|
||||
bleedingInfo.close();
|
||||
|
|
@ -234,6 +236,7 @@ void RbUtilQt::downloadBleedingDone(bool error)
|
|||
|
||||
m_gotInfo = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void RbUtilQt::downloadDone(int id, bool error)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue