Fixed bug in ad posting
This commit is contained in:
parent
500693cbd0
commit
8115340ddd
|
@ -256,10 +256,11 @@
|
||||||
|
|
||||||
openProfileInBrowser(): void {
|
openProfileInBrowser(): void {
|
||||||
electron.remote.shell.openExternal(`https://www.f-list.net/c/${this.profileName}`);
|
electron.remote.shell.openExternal(`https://www.f-list.net/c/${this.profileName}`);
|
||||||
this.$refs.profileViewer.hide();
|
|
||||||
|
(this.$refs.profileViewer as any).hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
openConversation(a?: any, b?: any, c?: any): void {
|
openConversation(): void {
|
||||||
//this.
|
//this.
|
||||||
// this.profileName
|
// this.profileName
|
||||||
const character = core.characters.get(this.profileName);
|
const character = core.characters.get(this.profileName);
|
||||||
|
@ -267,7 +268,7 @@
|
||||||
|
|
||||||
conversation.show();
|
conversation.show();
|
||||||
|
|
||||||
this.$refs.profileViewer.hide();
|
(this.$refs.profileViewer as any).hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
get styling(): string {
|
get styling(): string {
|
||||||
|
|
Loading…
Reference in New Issue