Skip to content

Commit

Permalink
fix setting the connection name
Browse files Browse the repository at this point in the history
  • Loading branch information
EmielBruijntjes committed Jun 24, 2023
1 parent ff1fbed commit 12f4314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectionstartframe.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class ConnectionStartFrame : public ConnectionFrame
// on unix-like systems I know how to retrieve application and platform info
if (!properties.contains("product")) properties["product"] = ProgramName();
if (!properties.contains("platform")) properties["platform"] = PlatformName();
if (!properties.contains("connection_name")) properties["product"] = ProgramName();
if (!properties.contains("connection_name")) properties["connection_name"] = ProgramName();
#endif

// send back a connection start ok frame
Expand Down

0 comments on commit 12f4314

Please sign in to comment.