1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:47:35 +00:00

Services: Fix typos

This commit is contained in:
Brendan Coles 2020-12-27 23:53:03 +00:00 committed by Andreas Kling
parent 45d1c08386
commit df6106854e
2 changed files with 2 additions and 2 deletions

View file

@ -304,6 +304,6 @@ bool Launcher::open_file_url(const URL& url)
String extension = {};
if (extension_parts.size() > 1)
extension = extension_parts.last();
return open_with_user_preferences(m_file_handlers, extension, url.path(), "/bin/TextEdit");
return open_with_user_preferences(m_file_handlers, extension, url.path(), "/bin/TextEditor");
}
}