-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object reference not set to an instance of an object. #70
Comments
getting this error also that causes a crash after evemon has been running for several minutes whenever i mouseover the character sheet notification X "radio button" used to dismiss notifications about contracts needing attention, industry jobs completed or mails received. always reproducible. EVEMon Version: 3.0.3.4658 System.NullReferenceException: Object reference not set to an instance of an object. Datafile report: Diagnostic Log: |
Possible fix for:
System.NullReferenceException: Object reference not set to an instance of an object.
EVEMon.Common.Models.ConquerableStation.<>c__DisplayClass19_0.b__0(ConquerableStation station) in EVEMon.Common\Models\ConquerableStation.cs:line 243
Changed line 243 in ConquerableStation.cs from
: s_conqStationsByID.Values.FirstOrDefault(station => station.Name == name);
into
: s_conqStationsByID.Values.FirstOrDefault(station => name.Equals(station.Name));
The text was updated successfully, but these errors were encountered: