fscache: Fix starts_with() broken by b41a5f4e5b

Cette révision appartient à :
Albert S. 2021-11-30 19:14:59 +01:00
Parent 4f6bcd27b4
révision 5570154113
1 fichiers modifiés avec 1 ajouts et 1 suppressions

2
cache/fscache.cpp externe
Voir le fichier

@ -46,7 +46,7 @@ void FsCache::removePrefix(std::string_view prefix)
// TODO: lock dir
for(auto &entry : std::filesystem::directory_iterator(std::filesystem::path{this->path}))
{
if(std::string_view(entry.path().filename().c_str()).starts_with(prefix) == 0)
if(std::string_view(entry.path().filename().c_str()).starts_with(prefix))
{
std::filesystem::remove_all(entry);
}