mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:37:44 +00:00
Services: Fix typos
This commit is contained in:
parent
45d1c08386
commit
df6106854e
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ int main(int, char**)
|
||||||
server->on_ready_to_accept = [&] {
|
server->on_ready_to_accept = [&] {
|
||||||
auto client_socket = server->accept();
|
auto client_socket = server->accept();
|
||||||
if (!client_socket) {
|
if (!client_socket) {
|
||||||
dbg() << "ProtocolServer: accept failed.";
|
dbg() << "Clipboard: accept failed.";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
static int s_next_client_id = 0;
|
static int s_next_client_id = 0;
|
||||||
|
|
|
@ -304,6 +304,6 @@ bool Launcher::open_file_url(const URL& url)
|
||||||
String extension = {};
|
String extension = {};
|
||||||
if (extension_parts.size() > 1)
|
if (extension_parts.size() > 1)
|
||||||
extension = extension_parts.last();
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue