Changeset 461 in code for trunk/downstream.go


Ignore:
Timestamp:
Mar 15, 2021, 10:08:19 PM (4 years ago)
Author:
contact
Message:

Use upstream ISUPPORT map for NETWORK

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/downstream.go

    r456 r461  
    881881        }
    882882
    883         if uc := dc.upstream(); uc != nil && uc.networkName != "" {
    884                 isupport = append(isupport, fmt.Sprintf("NETWORK=%v", uc.networkName))
     883        if uc := dc.upstream(); uc != nil && uc.isupport["NETWORK"] != nil {
     884                isupport = append(isupport, fmt.Sprintf("NETWORK=%v", *uc.isupport["NETWORK"]))
    885885        }
    886886
Note: See TracChangeset for help on using the changeset viewer.