Browse Source

fix page meta data update

CPP-GTK4
yggverse 2 months ago
parent
commit
a9d7e59534
  1. 18
      src/app/browser/main/tab/page.cpp

18
src/app/browser/main/tab/page.cpp

@ -397,16 +397,23 @@ void Page::navigation_reload( @@ -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( @@ -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…
Cancel
Save