Get/set new manga field from/to the db

This commit is contained in:
Luis Ángel San Martín
2021-01-16 18:30:25 +01:00
parent f7fa4adbd0
commit 60de69635b
3 changed files with 23 additions and 1 deletions

View File

@ -31,6 +31,7 @@ Folder &Folder::operator=(const Folder &other)
this->knownId = other.knownId;
this->finished = other.finished;
this->completed = other.completed;
this->manga = other.manga;
return *this;
}