Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/services/sockethub-irc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class SockethubIrcService extends Service {
sasl: account.server.sasl,
nick: account.nickname,
// username: account.username,
password: account.password
...(account.password && { password: account.password }),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the property is undefined, then the password there would be set to undefined, i.e. not set. Or am I missing something?

}
});

Expand Down