[TychoAM] Make resilient to missing pref lightweightThemes.animation.enabled

This commit is contained in:
wolfbeast 2018-07-03 11:08:58 +02:00 committed by Roy Tam
commit 9c9ba7c6c8

View file

@ -59,10 +59,14 @@ var ImageCropper = {
return aImageURL;
}
if (Services.prefs.getBoolPref("lightweightThemes.animation.enabled")) {
//Don't crop if animated
return aImageURL;
}
try {
if (Services.prefs.getBoolPref("lightweightThemes.animation.enabled")) {
//Don't crop if animated
return aImageURL;
}
} catch(e) {
// Continue of pref doesn't exist.
}
// Generate the cropped image's file name using its
// base name and the current screen size.