Skip to content

Commit

Permalink
Fixes the NullReferenceException in #1235 and appears to adhere to th…
Browse files Browse the repository at this point in the history
…e practice of including an addres with the serialized binary.
  • Loading branch information
Christopher Martin committed Aug 22, 2015
1 parent cdf5f92 commit 3df119f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private Information GetTransportInformation()
var address = system.Provider.DefaultAddress;
return !string.IsNullOrEmpty(address.Host)
? new Information { Address = address, System = system }
: null;
: new Information { System = system };
}
}
}
Expand Down

0 comments on commit 3df119f

Please sign in to comment.