Skip to content

Commit

Permalink
fix: The error of getting the path is fixed (#409)
Browse files Browse the repository at this point in the history
The error of getting the path is fixed

Log: Fixed some known issues
  • Loading branch information
pengfeixx authored Jan 5, 2024
1 parent d5d25d9 commit 5d3e2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/mpv/mpv_proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void MpvProxy::setDecodeModel(const QVariant &value)
void MpvProxy::initMpvFuns()
{
QString libmpvPath;
libmpvPath = CompositingManager::libPath("libmpv.so.").isEmpty();
libmpvPath = CompositingManager::libPath("libmpv.so.");
QLibrary mpvLibrary(libmpvPath);

m_waitEvent = reinterpret_cast<mpv_waitEvent>(mpvLibrary.resolve("mpv_wait_event"));
Expand Down

0 comments on commit 5d3e2f5

Please sign in to comment.