mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Applications: Stop lying about string types
This commit is contained in:
committed by
Jelle Raaijmakers
parent
5ff80b60cf
commit
a45682dcdc
@@ -110,7 +110,7 @@ MainWidget::MainWidget()
|
||||
return;
|
||||
}
|
||||
m_history.push(path.string());
|
||||
auto string_path = String::from_utf8(path.string());
|
||||
auto string_path = String::from_deprecated_string(path.string());
|
||||
if (string_path.is_error())
|
||||
return;
|
||||
open_page(string_path.value());
|
||||
|
||||
Reference in New Issue
Block a user