Use Connected() instead of .connected in String()

This commit is contained in:
Alex Bee 2014-06-14 15:50:52 +01:00
parent 0ea3254693
commit 7711182a72
1 changed files with 2 additions and 2 deletions

View File

@ -390,12 +390,12 @@ func (conn *Conn) shutdown() {
func (conn *Conn) String() string {
str := "GoIRC Connection\n"
str += "----------------\n\n"
if conn.connected {
if conn.Connected() {
str += "Connected to " + conn.cfg.Server + "\n\n"
} else {
str += "Not currently connected!\n\n"
}
str += conn.cfg.Me.String() + "\n"
str += conn.Me().String() + "\n"
if conn.st != nil {
str += conn.st.String() + "\n"
}