Subject: | Fix for calling location() on existing events (replace 'gd:where' by 'where') |
Hi,
It seems that changing the location of an existing event fails, while
it works on events not already added to the calendar.
To fix it I replaced
$self->set($self->{_gd_ns}, 'gd:where', '', { valueString => $val });
by
$self->set($self->{_gd_ns}, 'where', '', { valueString => $val });
It now works for new or existing events.
note that for the get operation, it already use the "where" keyword.