Skip to content

Commit

Permalink
Merge pull request xbmc#2241 from t-nelson/delete_failed_fileop_jobs
Browse files Browse the repository at this point in the history
Don't leave failed fileop jobs in the processing list.
  • Loading branch information
jmarshallnz committed Feb 15, 2013
2 parents 15f4449 + a8a9bb8 commit 4659e13
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions xbmc/windows/GUIWindowFileManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1178,8 +1178,7 @@ void CGUIWindowFileManager::OnJobComplete(unsigned int jobID, bool success, CJob
CApplicationMessenger::Get().SendGUIMessage(msg, GetID(), false);
}

if (success)
CJobQueue::OnJobComplete(jobID, success, job);
CJobQueue::OnJobComplete(jobID, success, job);
}

void CGUIWindowFileManager::ShowShareErrorMessage(CFileItem* pItem)
Expand Down

0 comments on commit 4659e13

Please sign in to comment.