diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-25 13:45:48 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-25 13:45:48 +0200 |
commit | 19b35e92511718fb5cfe653df535e072c7ccd748 (patch) | |
tree | 4b768c9ea966589ae68e844f2af4324df8b14a9a /toolkit/components/thumbnails/BackgroundPageThumbs.jsm | |
parent | e437d80133c96096460bf9418f17f25a65a2db46 (diff) | |
download | UXP-19b35e92511718fb5cfe653df535e072c7ccd748.tar UXP-19b35e92511718fb5cfe653df535e072c7ccd748.tar.gz UXP-19b35e92511718fb5cfe653df535e072c7ccd748.tar.lz UXP-19b35e92511718fb5cfe653df535e072c7ccd748.tar.xz UXP-19b35e92511718fb5cfe653df535e072c7ccd748.zip |
Use a fixed thumbnail placeholder for blank thumbs (failed to capture).
Diffstat (limited to 'toolkit/components/thumbnails/BackgroundPageThumbs.jsm')
-rw-r--r-- | toolkit/components/thumbnails/BackgroundPageThumbs.jsm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/toolkit/components/thumbnails/BackgroundPageThumbs.jsm b/toolkit/components/thumbnails/BackgroundPageThumbs.jsm index bd52e77e9..b2aa646f7 100644 --- a/toolkit/components/thumbnails/BackgroundPageThumbs.jsm +++ b/toolkit/components/thumbnails/BackgroundPageThumbs.jsm @@ -468,11 +468,9 @@ Capture.prototype = { }; if (!data) { - // If this background attempt failed, cause a dummy file to be saved, so + // If this background attempt failed, cause a placeholder file to be saved, so // that gets loaded instead of attempting again (and again). - // XXX: Perhaps we can create a placeholder image to use instead of "null" - // here, so it has something to show to the user? - PageThumbs._store(this.url, this.url, null, true) + PageThumbs._store(this.url, this.url, atob(BLANKTHUMB), true) .then(done, done); return; } |