MLv2 v1.7.56 fix on canary (#20)
This commit is contained in:
parent
5ab15b30cd
commit
fb3f3c5b5b
|
@ -1,4 +1,7 @@
|
||||||
# [MessageLoggerV2](https://1lighty.github.io/BetterDiscordStuff/?plugin=MessageLoggerV2 "MessageLoggerV2") Changelog
|
# [MessageLoggerV2](https://1lighty.github.io/BetterDiscordStuff/?plugin=MessageLoggerV2 "MessageLoggerV2") Changelog
|
||||||
|
### 1.7.56
|
||||||
|
- Fixed not working on canary
|
||||||
|
|
||||||
### 1.7.55
|
### 1.7.55
|
||||||
- Bruh. Gitlab sux, moved plugin to github.
|
- Bruh. Gitlab sux, moved plugin to github.
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ module.exports = class MessageLoggerV2 {
|
||||||
return 'MessageLoggerV2';
|
return 'MessageLoggerV2';
|
||||||
}
|
}
|
||||||
getVersion() {
|
getVersion() {
|
||||||
return '1.7.55';
|
return '1.7.56';
|
||||||
}
|
}
|
||||||
getAuthor() {
|
getAuthor() {
|
||||||
return 'Lighty';
|
return 'Lighty';
|
||||||
|
@ -162,9 +162,9 @@ module.exports = class MessageLoggerV2 {
|
||||||
getChanges() {
|
getChanges() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
title: 'bruh',
|
title: 'fixed',
|
||||||
type: 'improved',
|
type: 'fixed',
|
||||||
items: ['Bruh. Gitlab sux, moved plugin to github.']
|
items: ['Fixed not working on canary']
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -3106,7 +3106,7 @@ module.exports = class MessageLoggerV2 {
|
||||||
this.createModal.confirmationModal.Sizes = ZeresPluginLibrary.WebpackModules.getByProps('ModalSize').ModalSize;
|
this.createModal.confirmationModal.Sizes = ZeresPluginLibrary.WebpackModules.getByProps('ModalSize').ModalSize;
|
||||||
} catch { }
|
} catch { }
|
||||||
this.ModalStack = ZeresPluginLibrary.WebpackModules.getByProps('openModal', 'hasModalOpen');
|
this.ModalStack = ZeresPluginLibrary.WebpackModules.getByProps('openModal', 'hasModalOpen');
|
||||||
this._modalsApiUnsubcribe = this.ModalStack.modalsApi.subscribe(_ => {
|
this._modalsApiUnsubcribe = (this.ModalStack.modalsApi || this.ModalStack.useModalsStore).subscribe(_ => {
|
||||||
if (this.menu.open && !this.ModalStack.hasModalOpen(this.style.menu)) {
|
if (this.menu.open && !this.ModalStack.hasModalOpen(this.style.menu)) {
|
||||||
this.menu.filter = '';
|
this.menu.filter = '';
|
||||||
this.menu.open = false;
|
this.menu.open = false;
|
||||||
|
|
Loading…
Reference in New Issue