Skip to content

Commit

Permalink
videodb: don't show user credentials in source unavailable prompt dur…
Browse files Browse the repository at this point in the history
…ing library cleaning
  • Loading branch information
Montellese committed Dec 17, 2013
1 parent 88b3173 commit ee5f905
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/video/VideoDatabase.cpp
Expand Up @@ -8457,9 +8457,10 @@ std::vector<int> CVideoDatabase::CleanMediaType(const std::string &mediaType, co
CGUIDialogYesNo* pDialog = (CGUIDialogYesNo*)g_windowManager.GetWindow(WINDOW_DIALOG_YES_NO);
if (pDialog != NULL)
{
CURL parentUrl(parentPath);
pDialog->SetHeading(15012);
pDialog->SetLine(1, 15013);
pDialog->SetLine(2, parentPath);
pDialog->SetLine(2, parentUrl.GetWithoutUserDetails());
pDialog->SetChoice(0, 15015);
pDialog->SetChoice(1, 15014);

Expand Down

0 comments on commit ee5f905

Please sign in to comment.