Added relevant indexes using artist sort name. fixes #184

This commit is contained in:
emeric
2022-01-31 21:09:22 +01:00
parent 24d239f1e7
commit 1e0bf58092
2 changed files with 92 additions and 133 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ bool
RecursiveSharedMutex::isSharedLocked()
{
const auto thisThreadId {std::this_thread::get_id()};
if (_uniqueOwner == thisThreadId )
if (_uniqueOwner == thisThreadId )
return true;
std::scoped_lock lock {_sharedCountMutex};