Fix for canary/ptb

This commit is contained in:
2022-08-11 17:42:31 -04:00
parent 1ebb6fc7d6
commit 78718fb33c
5 changed files with 16 additions and 7 deletions
+11
View File
@@ -2,6 +2,17 @@
This changelog starts with the restructured 1.0.0 release that happened after context isolation changes. The changelogs here should more-or-less mirror the ones that get shown in the client but probably with less formatting and pizzazz.
## 1.6.2
### Added
### Removed
### Changed
### Fixed
- Fixed non-loading issue due to changed UserSettingsStore
## 1.6.1
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "betterdiscord",
"version": "1.6.1",
"version": "1.6.2",
"description": "Enhances Discord by adding functionality and themes.",
"main": "src/index.js",
"scripts": {
+2 -4
View File
@@ -1,14 +1,12 @@
// fixed, improved, added, progress
export default {
description: "Big things are coming soon, please be patient!",
description: "Sorry for all the updates lately, Discord has been making a lot of internal changes!",
changes: [
{
title: "Fixes",
type: "fixed",
items: [
"Fixed an issue where `waitForModule` would not return the found module.",
"Fixed an issue where broken addon METAs could prevent BD from fully loading.",
"Fixed an issue where developer badges stopped rendering."
"Fixed an issue where BD wouldn't load on canary/ptb.",
]
}
]
+1 -1
View File
@@ -36,7 +36,7 @@ export default Utilities.memoizeObject({
/* Current User Info, State and Settings */
get UserInfoStore() {return WebpackModules.getByProps("getToken");},
get UserSettingsStore() {return WebpackModules.getByProps("guildPositions");},
get UserSettingsStore() {return WebpackModules.getByProps("getAllSettings", "theme");},
get AccountManager() {return WebpackModules.getByProps("register", "login");},
get UserSettingsUpdater() {return WebpackModules.getByProps("updateRemoteSettings");},
get OnlineWatcher() {return WebpackModules.getByProps("isOnline");},
+1 -1
View File
@@ -6,7 +6,7 @@ import Events from "./emitter";
const {Dispatcher, UserSettingsStore} = DiscordModules;
export default new class LocaleManager {
get discordLocale() {return UserSettingsStore.locale;}
get discordLocale() {return UserSettingsStore?.locale ?? this.defaultLocale;}
get defaultLocale() {return "en-US";}
constructor() {