Changeset 1285

Show
Ignore:
Timestamp:
2/1/2010 11:49:23 AM (6 weeks ago)
Author:
vessper
Message:

01/02/2010 (1.14.1.1285)


- Core: Checked for valid IDs when displaying EveMails?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/EveHQ/Forms/frmMail.vb

    r1280 r1285  
    214214                strTo = "" 
    215215                For Each ID As String In IDs 
    216                     strTo &= "; " & FinalIDs(CLng(ID)) 
     216                    If FinalIDs.ContainsKey(CLng(ID)) = True Then 
     217                        strTo &= "; " & FinalIDs(CLng(ID)) 
     218                    End If 
    217219                Next 
    218220                strTo = strTo.Remove(0, 2)