media library: do not attempt to locate local files

master
Andrzej Rybczak 12 years ago
parent 563dac1a12
commit 17c5dbf548
  1. 5
      src/media_library.cpp

@ -948,6 +948,11 @@ void MediaLibrary::LocateSong(const MPD::Song &s)
Statusbar::printf("Can't use this function because the song has no %s tag set", item_type);
return;
}
if (!s.isFromDatabase())
{
Statusbar::print("Song is not from the database");
return;
}
if (myScreen != this)
switchTo();

Loading…
Cancel
Save