mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
Merge pull request #289 from lava/master
Fix bugs related to custom sticker integration
This commit is contained in:
commit
4e220bb6af
@ -2,12 +2,12 @@
|
||||
<my-spinner></my-spinner>
|
||||
</div>
|
||||
<div *ngIf="!isLoading">
|
||||
<my-ibox boxTitle="Sticker Packs" *ngIf="packs.length <= 0">
|
||||
<my-ibox boxTitle="Sticker Packs" *ngIf="packs.length <= 0 && !customEnabled">
|
||||
<div class="my-ibox-content">
|
||||
<h5 style="text-align: center;">Sticker packs are not enabled on this Dimension instance.</h5>
|
||||
</div>
|
||||
</my-ibox>
|
||||
<my-ibox boxTitle="Add Sticker Packs" *ngIf="packs.length > 0 && customEnabled">
|
||||
<my-ibox boxTitle="Add Sticker Packs" *ngIf="customEnabled">
|
||||
<div class="my-ibox-content">
|
||||
<form (submit)="importPack()" novalidate name="importForm">
|
||||
<label class="label-block">
|
||||
@ -42,4 +42,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</my-ibox>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -92,7 +92,7 @@ export class StickerpickerComponent implements OnInit {
|
||||
|
||||
const targetUrl = this.window.location.origin + "/widgets/stickerpicker";
|
||||
|
||||
if (widgets.response[0].content.url === targetUrl) {
|
||||
if (Array.isArray(widgets.response) && widgets.response.length && widgets.response[0].content.url === targetUrl) {
|
||||
console.warn("Not replacing Dimension sticker picker");
|
||||
return;
|
||||
}
|
||||
@ -113,4 +113,4 @@ export class StickerpickerComponent implements OnInit {
|
||||
console.error(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user