1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-29 15:36:32 -05:00

Use proper install result when overwriting files

This commit is contained in:
Morph
2020-07-12 12:28:18 -04:00
parent 8794e623d9
commit 1bbc61f5f1
2 changed files with 3 additions and 3 deletions

View File

@@ -643,7 +643,7 @@ InstallResult RegisteredCache::InstallEntry(const NSP& nsp, bool overwrite_if_ex
Refresh();
if (result) {
return InstallResult::ErrorAlreadyExists;
return InstallResult::OverwriteExisting;
}
return InstallResult::Success;
}