Fix Folder::operator=

This commit is contained in:
Luis Ángel San Martín 2022-08-31 18:25:36 +02:00
parent c9bb429ad6
commit 5163df977a

View File

@ -34,6 +34,9 @@ Folder &Folder::operator=(const Folder &other)
this->finished = other.finished;
this->completed = other.completed;
this->manga = other.manga;
this->numChildren = other.numChildren;
this->firstChildHash = other.firstChildHash;
this->customImage = other.customImage;
return *this;
}