We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0cd0c commit 65acc24Copy full SHA for 65acc24
src/modes/thread_view/webextension/tvextension.cc
@@ -2272,7 +2272,7 @@ void AstroidExtension::scroll_to_element (ustring eid) {
2272
}
2273
2274
void AstroidExtension::handle_navigate (AstroidMessages::Navigate &n) {
2275
- std::string _t = AstroidMessages::Navigate_Type_descriptor ()->FindValueByNumber (n.type ())->name ();
+ std::string _t { AstroidMessages::Navigate_Type_descriptor ()->FindValueByNumber (n.type ())->name () };
2276
LOG (debug) << "navigating, type: " << _t;
2277
2278
WebKitDOMDocument * d = webkit_web_page_get_dom_document (page);
0 commit comments