[fix] Multimeter Album Art May Crash

Hello, there

if you listen to internet radio stations with itunes, the multimeter docklet's album art theme may crash AveDesk, Object Dock and YZDock.

Reason being an exception inside Samurize's advancedmediaplayer.dll, if the

file name of the actual played item is not available, which applies to radio content.

May be I'm the only one encountering this cause I'm still with Samurize Version 1.40. The problem doesn't arise within Samurize, because the exception is caught.

A short workaround:

Open iTunes.vbs and replace

        cover.LoadImage .getAlbumCover, True

with the following:

        if len(.getTrackFileName) then
           cover.LoadImage .getAlbumCover, True
       end if

hth,

herd

#162786

Nice bug catch/fix :D

#162789

Thanks herd, i noticed that a day or so ago.

#163010