Fix handling edited message in chatlist

Change shipping icon
This commit is contained in:
Eduard Kuzmenko 2022-07-19 16:34:47 +02:00
parent 6e551d62d0
commit 96f03e056c
2 changed files with 3 additions and 3 deletions

View File

@ -618,7 +618,7 @@ export default class PopupPayment extends PopupElement {
let lastShippingPricesElements: HTMLElement[];
shippingMethodRow = createRow({
icon: 'car',
icon: 'shipping',
titleLangKey: 'PaymentCheckoutShippingMethod',
clickable: !isReceipt && (onShippingMethodClick = () => {
new PopupPaymentShippingMethods(paymentForm as PaymentsPaymentForm, lastRequestedInfo, lastShippingOption).addEventListener('finish', (shippingOption) => {

View File

@ -4260,8 +4260,8 @@ export class AppMessagesManager extends AppManager {
}
releaseUnreadCount();
this.rootScope.dispatchEvent('dialogs_multiupdate', {[peerId]: dialog});
this.dialogsStorage.setDialogToState(dialog);
this.rootScope.dispatchEvent('dialogs_multiupdate', {[peerId]: dialog});
}
};
@ -4321,8 +4321,8 @@ export class AppMessagesManager extends AppManager {
if(isTopMessage || (message as Message.message).grouped_id) {
const updatedDialogs: {[peerId: PeerId]: Dialog} = {};
updatedDialogs[peerId] = dialog;
this.rootScope.dispatchEvent('dialogs_multiupdate', updatedDialogs);
this.dialogsStorage.setDialogToState(dialog);
this.rootScope.dispatchEvent('dialogs_multiupdate', updatedDialogs);
}
}
};