Skip to content

Commit 65acc24

Browse files
christian-heuselgauteh
authored andcommitted
tvextension: Fix protobuf 30.0 compatibility issue
Signed-off-by: Christian Heusel <[email protected]>
1 parent bd0cd0c commit 65acc24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modes/thread_view/webextension/tvextension.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ void AstroidExtension::scroll_to_element (ustring eid) {
22722272
}
22732273

22742274
void AstroidExtension::handle_navigate (AstroidMessages::Navigate &n) {
2275-
std::string _t = AstroidMessages::Navigate_Type_descriptor ()->FindValueByNumber (n.type ())->name ();
2275+
std::string _t { AstroidMessages::Navigate_Type_descriptor ()->FindValueByNumber (n.type ())->name () };
22762276
LOG (debug) << "navigating, type: " << _t;
22772277

22782278
WebKitDOMDocument * d = webkit_web_page_get_dom_document (page);

0 commit comments

Comments
 (0)