mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
fix page meta data update
This commit is contained in:
parent
4eb824594e
commit
a9d7e59534
1 changed files with 9 additions and 9 deletions
|
|
@ -397,16 +397,23 @@ void Page::navigation_reload(
|
|||
{
|
||||
case MIME::TEXT_GEMINI:
|
||||
|
||||
// Update
|
||||
title = _("Done"); // @TODO
|
||||
|
||||
description = g_uri_get_host(
|
||||
uri
|
||||
);
|
||||
|
||||
progress_fraction = 1;
|
||||
|
||||
// Set content driver
|
||||
// Use content driver
|
||||
pageContent->update(
|
||||
page::Content::TEXT_GEMINI,
|
||||
buffer,
|
||||
uri
|
||||
);
|
||||
|
||||
// Update title on detected by document provider
|
||||
// Update title by document header (on detected)
|
||||
if (!pageContent->get_title().empty())
|
||||
{
|
||||
title = pageContent->get_title();
|
||||
|
|
@ -428,13 +435,6 @@ void Page::navigation_reload(
|
|||
action__update->activate();
|
||||
}
|
||||
|
||||
// Update
|
||||
title = _("Done"); // @TODO page title
|
||||
|
||||
description = g_uri_get_host(
|
||||
uri
|
||||
);
|
||||
|
||||
break;
|
||||
|
||||
// @TODO other statuses..
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue