Skip to content

Commit

Permalink
Cleanup TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire committed Jul 12, 2024
1 parent a6f6b54 commit e4e1365
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/cpprealm/networking/platform_networking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ namespace realm::networking {

void default_socket_provider::initialize() {
auto user_agent_binding_info = std::string("RealmCpp/") + std::string(REALMCXX_VERSION_STRING);
auto user_agent_application_info = "";//app_id; TODO: Should we pass the app id?

auto user_agent = util::format("RealmSync/%1 (%2) %3 %4", REALM_VERSION_STRING, util::get_platform_info(),
user_agent_binding_info, user_agent_application_info);
auto user_agent = util::format("RealmSync/%1 (%2) %3", REALM_VERSION_STRING, util::get_platform_info(),
user_agent_binding_info);
m_provider = std::make_unique<::realm::sync::websocket::DefaultSocketProvider>(util::Logger::get_default_logger(), user_agent);
}

Expand Down

0 comments on commit e4e1365

Please sign in to comment.