From 5163df977abf6f0e5c83a0648f22585a0eece08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 31 Aug 2022 18:25:36 +0200 Subject: [PATCH] Fix Folder::operator= --- common/folder.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/folder.cpp b/common/folder.cpp index c6a0cd54..288ad66e 100644 --- a/common/folder.cpp +++ b/common/folder.cpp @@ -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; }