1
0
mirror of synced 2024-09-25 20:18:26 +02:00

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

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;