Merge pull request #71 from ifl0w/develop

Version Bump
This commit is contained in:
Wolfgang Rumpler 2019-09-20 01:01:54 +02:00 committed by GitHub
commit ac8c8a8e8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -2,13 +2,14 @@
"shell-version": [
"3.28",
"3.30",
"3.32"
"3.32",
"3.34"
],
"uuid": "randomwallpaper@iflow.space",
"settings-schema": "org.gnome.shell.extensions.space.iflow.randomwallpaper",
"name": "Random Wallpaper",
"description": "Fetches a random wallpaper from an online source and sets it as desktop background. \nThe desktop background can be updated periodically or manually.",
"version": 17,
"version": 18,
"semantic-version": "2.4.1",
"url": "https://github.com/ifl0w/RandomWallpaperGnome3"
}

View file

@ -241,7 +241,7 @@ var WallpaperController = class {
this._fetchFile(historyElement.source.imageDownloadUrl, (historyId, path, error) => {
if (error) {
this._bailOutWithCallback("Could not load new wallpaper.", callback);
this._bailOutWithCallback("Could not load new wallpaper. (" + error + ")", callback);
this._stopLoadingHooks.map(element => element(null));
return;
}