bugfix: update hash compare

This commit is contained in:
semenov
2025-07-23 12:29:34 +03:00
parent aed40b4dd7
commit c4a3d503af
25 changed files with 26480 additions and 186 deletions

View File

@@ -11,7 +11,7 @@ struct FileData
bool operator==(const FileData& other)const
{
if(this->path==(other.path)) return true;
if(this->path== other.path && this->hash == other.hash) return true;
return false;
}