String label = line.substring(0, idx);
final String value = "";
if (idx < line.length()) {
label = line.substring(idx);
}
InstantMessagingType type = null;
try {
type = InstantMessagingType.get(label);
} catch (final Exception ex) {
log.error("Ignoring unknown social media entry: " + label, ex);
continue;