From 243dae14eadb2231dba2b9e3520628fe2252d825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 30 Mar 2017 17:56:30 +0200 Subject: [PATCH] background: Fix file check The _animationFile property was removed in commit 8a4c86263362c ... --- js/ui/background.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/ui/background.js b/js/ui/background.js index fc2789810..5f4ce0d3e 100644 --- a/js/ui/background.js +++ b/js/ui/background.js @@ -166,7 +166,8 @@ const BackgroundCache = new Lang.Class({ settingsSchema: null, onLoaded: null }); - if (this._animations[params.settingsSchema] && _fileEqual0(this._animationFile, params.file)) { + let animation = this._animations[params.settingsSchema]; + if (animation && _fileEqual0(animation.file, params.file)) { if (params.onLoaded) { let id = GLib.idle_add(GLib.PRIORITY_DEFAULT, Lang.bind(this, function() { params.onLoaded(this._animations[params.settingsSchema]); @@ -177,7 +178,7 @@ const BackgroundCache = new Lang.Class({ return; } - let animation = new Animation({ file: params.file }); + animation = new Animation({ file: params.file }); animation.load(Lang.bind(this, function() { this._animations[params.settingsSchema] = animation;