aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--mainwindow.cc3
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2ddee0e..9fca1dc 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@ For example, on Ubuntu, these correspond with packages:
qtbase5-dev
libqt5svg5-dev
qtmultimedia5-dev
+libqt5multimedia5-plugins
libudev-dev
libopenobex2-dev
libusb-1.0-0-dev
diff --git a/mainwindow.cc b/mainwindow.cc
index b66423a..cf1ef1a 100644
--- a/mainwindow.cc
+++ b/mainwindow.cc
@@ -456,7 +456,8 @@ QString MainWindow::formatDuration(qint64 time) const
}
}
+QT_WARNING_DISABLE_DEPRECATED
QString MainWindow::currentPlayerMediaPath() const
{
- return _player->media().request().url().toLocalFile();
+ return _player->media().canonicalUrl().toLocalFile();
}