mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-27 21:39:37 +00:00
Book's illustrations are now immutable
This commit is contained in:
@ -73,11 +73,7 @@ bool Book::update(const kiwix::Book& other)
|
||||
m_articleCount = other.m_articleCount;
|
||||
m_mediaCount = other.m_mediaCount;
|
||||
m_size = other.m_size;
|
||||
m_illustrations.clear();
|
||||
for ( const auto& ill : other.m_illustrations ) {
|
||||
m_illustrations.push_back(std::make_shared<Illustration>(*ill));
|
||||
}
|
||||
|
||||
m_illustrations = other.m_illustrations;
|
||||
m_downloadId = other.m_downloadId;
|
||||
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user