Plain text on notification service messages
This commit is contained in:
parent
774dcce528
commit
c201135016
@ -2564,7 +2564,7 @@ export class AppMessagesManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(message.action) {
|
if(message.action) {
|
||||||
const str = this.wrapMessageActionText(message);
|
const str = this.wrapMessageActionText(message, plain);
|
||||||
|
|
||||||
messageText = str ? '<i>' + str + '</i>' : '';
|
messageText = str ? '<i>' + str + '</i>' : '';
|
||||||
}
|
}
|
||||||
@ -2605,7 +2605,7 @@ export class AppMessagesManager {
|
|||||||
return senderTitle;
|
return senderTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public wrapMessageActionText(message: any) {
|
public wrapMessageActionText(message: any, plain?: boolean) {
|
||||||
const action = message.action as MessageAction;
|
const action = message.action as MessageAction;
|
||||||
|
|
||||||
let str = '';
|
let str = '';
|
||||||
@ -2618,7 +2618,7 @@ export class AppMessagesManager {
|
|||||||
|
|
||||||
const getNameDivHTML = (peerId: number) => {
|
const getNameDivHTML = (peerId: number) => {
|
||||||
const title = appPeersManager.getPeerTitle(peerId);
|
const title = appPeersManager.getPeerTitle(peerId);
|
||||||
return title ? `<div class="name inline" data-peer-id="${peerId}">${title}</div> ` : '';
|
return title ? (plain ? title + ' ' : `<div class="name inline" data-peer-id="${peerId}">${title}</div> `) : '';
|
||||||
};
|
};
|
||||||
|
|
||||||
switch(action._) {
|
switch(action._) {
|
||||||
|
Loading…
Reference in New Issue
Block a user