Skip to content

Commit

Permalink
fix: switch primary and secondary servers
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewjablack committed Mar 28, 2024
1 parent cf3c935 commit b78fdca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/transport/lib/irc/Servers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ interface IrcServer {
}

const primary_server: IrcServer = {
host: 'irc.darkscience.net',
host: 'irc.hackint.org',
port: 6697,
};

const secondary_server: IrcServer = {
host: 'irc.hackint.org',
host: 'irc.darkscience.net',
port: 6697,
};

Expand Down

0 comments on commit b78fdca

Please sign in to comment.