Skip to content
Snippets Groups Projects
Commit da7dd618 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Make failed UTFS client upload non-fatal.

The reason is almost always that another instance is still running,
which means the program is already there anyway.

Reviewed-by: kh1
Reviewed-by: dt
parent 2b047a26
No related branches found
No related tags found
No related merge requests found
......@@ -240,9 +240,8 @@ void MaemoRemoteMounter::handleUploadFinished(Core::SftpJobId jobId,
m_uploadJobId = SftpInvalidJob;
if (!errorMsg.isEmpty()) {
emit error(tr("Could not upload UTFS client: %1").arg(errorMsg));
setState(Inactive);
return;
emit reportProgress(tr("Could not upload UTFS client (%1), continuing anyway.")
.arg(errorMsg));
}
startUtfsClients();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment