BUG v0.2.4

This commit is contained in:
_Lighty_ 2020-02-08 13:54:28 +01:00
parent a65b9cd64c
commit f47c064482
2 changed files with 6 additions and 3 deletions

View File

@ -41,7 +41,7 @@ var BetterUnavailableGuilds = (() => {
twitter_username: '' twitter_username: ''
} }
], ],
version: '0.2.3', version: '0.2.4',
description: 'Makes unavailable guilds (servers) still show in the list, and be able to drag it around.', description: 'Makes unavailable guilds (servers) still show in the list, and be able to drag it around.',
github: 'https://github.com/1Lighty', github: 'https://github.com/1Lighty',
github_raw: 'https://raw.githubusercontent.com/1Lighty/BetterDiscordPlugins/master/Plugins/BetterUnavailableGuilds/BetterUnavailableGuilds.plugin.js' github_raw: 'https://raw.githubusercontent.com/1Lighty/BetterDiscordPlugins/master/Plugins/BetterUnavailableGuilds/BetterUnavailableGuilds.plugin.js'
@ -50,7 +50,7 @@ var BetterUnavailableGuilds = (() => {
{ {
title: 'sad', title: 'sad',
type: 'added', type: 'added',
items: ['Fixed crash if XenoLib or ZeresPluginLib were missing'] items: ['Fixed plugin failing to transfer data from canary to other release channels.']
} }
], ],
defaultConfig: [ defaultConfig: [
@ -309,7 +309,7 @@ var BetterUnavailableGuilds = (() => {
/* transfer the data */ /* transfer the data */
if (curUserShit['stable']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['stable']); if (curUserShit['stable']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['stable']);
else if (curUserShit['ptb']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['ptb']); else if (curUserShit['ptb']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['ptb']);
else if (curUserShit['canary']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['ptb']); else if (curUserShit['canary']) curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = XenoLib.DiscordUtils.cloneDeep(curUserShit['canary']);
else curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = {}; else curUserShit[GLOBAL_ENV.RELEASE_CHANNEL] = {};
} }
} }

View File

@ -1,4 +1,7 @@
# [BetterUnavailableGuilds](https://1lighty.github.io/BetterDiscordStuff/?plugin=BetterUnavailableGuilds "BetterUnavailableGuilds") Changelog # [BetterUnavailableGuilds](https://1lighty.github.io/BetterDiscordStuff/?plugin=BetterUnavailableGuilds "BetterUnavailableGuilds") Changelog
### 0.2.4
- Fixed plugin failing to transfer data from canary to other release channels
### 0.2.3 ### 0.2.3
- Fixed crash if XenoLib or ZeresPluginLib were missing - Fixed crash if XenoLib or ZeresPluginLib were missing