--- SuperDateTime/Plugin.pm 2006/05/18 19:08:38 1.1 +++ SuperDateTime/Plugin.pm 2007/01/25 04:44:46 @@ -3168,11 +3168,19 @@ Slim::Utils::Timers::killTimers($client, \&nextDisplayItem); Slim::Utils::Timers::killTimers($client, \&topLineSet); } + +sub getFuzzyTimeF { + my ($client, $time, $format) = @_; + if ( defined($Plugins::FuzzyTime::Plugin::apiVersion) ) { + return Plugins::FuzzyTime::Public::timeF($client,$time,$format); } + return Slim::Utils::DateTime::timeF($time,$format); +} + sub screensaverSuperDateTimelines { my $client = shift; if ($nowshowing{$client} == 0) { #Show time and temperature - my $time = Slim::Utils::Misc::timeF(); + my $time = &getFuzzyTimeF($client); $displayLine2{$client} = $weatherString; $displayLine2{$client} =~ s/%1/$time/;