- fix scelta provincia (il bottone Avanti non veniva disabilitato).
- Se non scelgo la provincia, non deve farmi vedere la App...
This commit is contained in:
@@ -3750,6 +3750,16 @@ module.exports = {
|
||||
}
|
||||
},
|
||||
|
||||
getNomeCognomeTelegram(msg) {
|
||||
if (msg && msg.chat) {
|
||||
let nomecognome = msg.chat.first_name ? msg.chat.first_name : '';
|
||||
nomecognome += msg.chat.last_name ? ' ' + msg.chat.last_name : '';
|
||||
|
||||
return nomecognome;
|
||||
}
|
||||
return '';
|
||||
},
|
||||
|
||||
extractNameAndSurnameByComplete(name_complete) {
|
||||
const suffissoCognome = ['Del', 'La', 'De', 'Lo'];
|
||||
|
||||
@@ -4966,4 +4976,5 @@ module.exports = {
|
||||
}
|
||||
},
|
||||
|
||||
// Scriviere qui SOPRA le funzioni
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user