If you do then try this code change - at line 308 of administrator/components/com_jevents/views/icalevent/view.html.php insert this code
// get list of creators - if fewer than 100
if (count($users)>100) {
return null;
}
before
$userOptions[] = JHTML::_('select.option', '-1', JText::_('SELECT_USER'));
foreach ($users as $user)
{
$userOptions[] = JHTML::_('select.option', $user->id, $user->name . " ( " . $user->username . " )");
}
Does that help?