Band-aid fix for bad decache of icalFeeds, where it is not deserialized from JSON. Fixes bug #12139.

This commit is contained in:
Colin Kuskie 2011-05-30 11:34:43 -07:00
parent 444c006aae
commit c3652d12a9
3 changed files with 21 additions and 5 deletions

View file

@ -712,7 +712,8 @@ sub getFeed {
=head2 getFeeds ( )
Gets an arrayref of hashrefs of all the feeds attached to this calendar.
Gets an arrayref of hashrefs of all the feeds attached to this calendar. Since the icalFeeds
property does double duty as JSON and Perl, deserialize from JSON if it's not already perl.
TODO: Format lastUpdated into the user's time zone
@ -720,7 +721,10 @@ TODO: Format lastUpdated into the user's time zone
sub getFeeds {
my $self = shift;
return $self->get('icalFeeds');
my $feeds = $self->get('icalFeeds');
return $feeds if (ref $feeds);
$self->session->log->warn('improperly stored icalFeed in calendar assetId:'.$self->getId);
return JSON::from_json($feeds);
}
#----------------------------------------------------------------------------