Skip to content
Snippets Groups Projects
Commit a47ba602 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

AndroidMediaLibrary: Fix potential missing return

parent cd092b1c
No related branches found
No related tags found
No related merge requests found
......@@ -164,6 +164,7 @@ AndroidMediaLibrary::increasePlayCount(int64_t mediaId)
auto media = p_ml->media(mediaId);
if (media != nullptr)
return media->increasePlayCount();
return false;
}
std::vector<medialibrary::MediaPtr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment