mirror of https://github.com/kiwix/libkiwix.git
Reintroduce kiwix-serve taskbar
This commit is contained in:
parent
3b7c805183
commit
52e165cf78
|
@ -1,3 +1,8 @@
|
|||
kiwix-lib 8.2.1
|
||||
===============
|
||||
|
||||
* Reintroduce kiwix-serve taskbar
|
||||
|
||||
kiwix-lib 8.2.0
|
||||
===============
|
||||
|
||||
|
|
|
@ -870,6 +870,10 @@ Response InternalServer::handle_content(const RequestContext& request)
|
|||
zim::Blob raw_content = entry.getBlob();
|
||||
content = string(raw_content.data(), raw_content.size());
|
||||
auto response = get_default_response();
|
||||
|
||||
if (mimeType.find("text/html") != string::npos)
|
||||
response.set_taskbar(bookName, reader->getTitle());
|
||||
|
||||
response.set_mimeType(mimeType);
|
||||
response.set_content(content);
|
||||
response.set_compress(true);
|
||||
|
|
Loading…
Reference in New Issue