fix: Remove button of content store entries not updating correctly

This commit is contained in:
WerWolv 2022-02-21 18:40:51 +01:00
parent 27c2c4dc33
commit a8e83154f0
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ namespace hex::plugin::builtin {
bool removedFile = fs::remove(path / fs::path(fileName));
bool removedFolder = fs::remove(path / fs::path(fileName).stem());
removed = removedFile || removedFolder;
removed = removed || removedFile || removedFolder;
}
return removed;