Added missing sticker set toast

This commit is contained in:
Eduard Kuzmenko 2022-01-21 21:04:09 +04:00
parent 631ec77ca8
commit dbecd32d69
2 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import Button from "../button";
import findUpClassName from "../../helpers/dom/findUpClassName"; import findUpClassName from "../../helpers/dom/findUpClassName";
import toggleDisability from "../../helpers/dom/toggleDisability"; import toggleDisability from "../../helpers/dom/toggleDisability";
import { attachClickEvent } from "../../helpers/dom/clickEvent"; import { attachClickEvent } from "../../helpers/dom/clickEvent";
import { toastNew } from "../toast";
const ANIMATION_GROUP = 'STICKERS-POPUP'; const ANIMATION_GROUP = 'STICKERS-POPUP';
@ -86,6 +87,11 @@ export default class PopupStickers extends PopupElement {
private loadStickerSet() { private loadStickerSet() {
return appStickersManager.getStickerSet(this.stickerSetInput).then(set => { return appStickersManager.getStickerSet(this.stickerSetInput).then(set => {
if(!set) {
toastNew({langPackKey: 'StickerSet.DontExist'});
this.hide();
return;
}
//console.log('PopupStickers loadStickerSet got set:', set); //console.log('PopupStickers loadStickerSet got set:', set);
this.set = set.set; this.set = set.set;

View File

@ -975,6 +975,7 @@ const lang = {
"Schedule.SendWhenOnline": "Send When Online", "Schedule.SendWhenOnline": "Send When Online",
"Stickers.Recent": "Recent", "Stickers.Recent": "Recent",
//"Stickers.Favorite": "Favorite", //"Stickers.Favorite": "Favorite",
"StickerSet.DontExist": "Sorry, this sticker set doesn't seem to exist.",
"VoiceChat.Chat.StartNew": "Video chat ended. Start a new one?", "VoiceChat.Chat.StartNew": "Video chat ended. Start a new one?",
"VoiceChat.Chat.StartNew.OK": "Start", "VoiceChat.Chat.StartNew.OK": "Start",
"VoiceChat.Chat.Ended": "Video chat ended.", "VoiceChat.Chat.Ended": "Video chat ended.",