diff --git a/src/app/shared/system-service/file.service.ts b/src/app/shared/system-service/file.service.ts index 7a67f6f..b462ac6 100644 --- a/src/app/shared/system-service/file.service.ts +++ b/src/app/shared/system-service/file.service.ts @@ -710,7 +710,7 @@ export class FileService{ private addAppAssociaton(appname:string, img:string):void{ if(!this._fileAndAppIconAssociation.get(appname)){ - if(appname === 'photoviewer' || appname === 'videoplayer' || appname === 'audioplayer'){ + if(appname === 'photoviewer' || appname === 'videoplayer' || appname === 'audioplayer' || appname === 'ruffle'){ this._fileAndAppIconAssociation.set(appname,`${this._consts.IMAGE_BASE_PATH}${appname}.png`); }else{ this._fileAndAppIconAssociation.set(appname,img);